mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 15:06:22 +01:00
7 lines
105 B
Text
7 lines
105 B
Text
|
varying vec4 v_vColour;
|
||
|
|
||
|
void main() {
|
||
|
gl_FragColor = v_vColour;
|
||
|
gl_FragColor.rgb /= gl_FragColor.a;
|
||
|
}
|