forked from AuroraMiddleware/gtk
28b490f14f
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).
8 lines
85 B
GLSL
8 lines
85 B
GLSL
uniform mat4 mvp;
|
|
uniform float alpha;
|
|
|
|
in vec2 position;
|
|
in vec2 uv;
|
|
|
|
out vec2 vUv;
|