This adds a gsk prefix to the stuff in the preamble, as we want to avoid it conflicting with things in the main shader. Especially once we start allow some customization of shaders.
19 lines
303 B
GLSL
19 lines
303 B
GLSL
// VERTEX_SHADER:
|
|
uniform vec4 u_color;
|
|
|
|
_OUT_ vec4 final_color;
|
|
|
|
void main() {
|
|
gl_Position = u_projection * u_modelview * vec4(aPosition, 0.0, 1.0);
|
|
|
|
final_color = gsk_premultiply(u_color) * u_alpha;
|
|
}
|
|
|
|
// FRAGMENT_SHADER:
|
|
_IN_ vec4 final_color;
|
|
|
|
void main() {
|
|
gskSetOutputColor(final_color);
|
|
}
|
|
|