gtk/gsk/resources/glsl/es2_common.fs.glsl
Emmanuele Bassi 03ab560fae gsk: Rename uniforms and attributes in shaders
Use appropriate names, and annotate the names with the types — 'u' for
uniforms, 'a' for attributes. The common preambles for shaders are split
from the bodies, so we need some way to distinguish the uniforms and the
attributes just from their name.
2016-10-18 11:49:09 +01:00

18 lines
316 B
GLSL

precision mediump float;
uniform mat4 uMVP;
uniform sampler2D uSource;
uniform sampler2D uMask;
uniform float uAlpha;
uniform int uBlendMode;
varying vec2 vUv;
vec4 Texture(sampler2D sampler, vec2 texCoords) {
return texture2D(sampler, texCoords);
}
void setOutputColor(vec4 color) {
gl_FragColor = color;
}