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