mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
7 lines
99 B
GLSL
7 lines
99 B
GLSL
varying vec4 v_vColour;
|
|
uniform vec4 blend;
|
|
|
|
void main() {
|
|
gl_FragColor = v_vColour * blend;
|
|
}
|