gtk/gsk/resources/glsl/gl3_common.fs.glsl
Emmanuele Bassi 28b490f14f gsk: Rework how GLSL shaders are built
The GL renderer should build the GLSL shaders using GskShaderBuilder.
This allows us to separate the common parts into separate files, and
assemble them as necessary, instead of shipping one big shader per type
of GL API (GL3, GL legacy, and GLES).
2016-10-18 11:49:07 +01:00

20 lines
326 B
GLSL

precision highp float;
uniform sampler2D map;
uniform sampler2D parentMap;
uniform mat4 mvp;
uniform float alpha;
uniform int blendMode;
in vec2 vUv;
out vec4 outputColor;
vec4 Texture(sampler2D sampler, vec2 texCoords) {
return texture(sampler, texCoords);
}
void setOutputColor(vec4 color) {
outputColor = color;
}