mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 22:43:53 +01:00
7 lines
115 B
Plaintext
7 lines
115 B
Plaintext
|
varying vec2 v_vTexcoord;
|
||
|
varying vec4 v_vColour;
|
||
|
|
||
|
void main() {
|
||
|
gl_FragColor = vec4( v_vTexcoord, 0., 1. );
|
||
|
}
|