wlroots/render/gles2/shaders/tex_rgba.frag

15 lines
276 B
GLSL
Raw Normal View History

#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif
varying vec2 v_texcoord;
uniform sampler2D tex;
uniform float alpha;
uniform mat4 color_matrix;
void main() {
gl_FragColor = color_matrix * texture2D(tex, v_texcoord) * alpha;
}