mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
10 lines
175 B
GLSL
10 lines
175 B
GLSL
|
|
uniform sampler2D texture;
|
|
|
|
varying vec2 v_texCoord;
|
|
varying lowp vec4 v_color;
|
|
|
|
void main(){
|
|
gl_FragColor = texture2D(texture, v_texCoord);
|
|
gl_FragColor.a *= v_color.a;
|
|
}
|