mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
14 lines
No EOL
276 B
GLSL
14 lines
No EOL
276 B
GLSL
#version 100
|
|
|
|
precision lowp float;
|
|
|
|
uniform lowp sampler2D tex;
|
|
uniform lowp sampler2D tex2;
|
|
varying lowp vec4 varying_color;
|
|
varying mediump vec2 varying_texCoord0;
|
|
|
|
void main()
|
|
{
|
|
lowp vec4 color = texture2D(tex, varying_texCoord0);
|
|
gl_FragColor = color * varying_color;
|
|
} |