mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
7 lines
137 B
GLSL
7 lines
137 B
GLSL
varying vec2 v_vTexcoord;
|
|
varying vec4 v_vColour;
|
|
|
|
void main() {
|
|
gl_FragColor = v_vColour * texture2D( gm_BaseTexture, v_vTexcoord );
|
|
}
|