16 lines
187 B
Plaintext
16 lines
187 B
Plaintext
[attribute]
|
|
|
|
vec4 BaseColor;
|
|
|
|
[gbuffer]
|
|
|
|
vec4 gb_color;
|
|
|
|
[attribute_to_gbuffer]
|
|
|
|
gb_color=BaseColor;
|
|
|
|
[gbuffer_to_attribute]
|
|
|
|
BaseColor=texture(gb_color,vs_out_position);
|