summaryrefslogtreecommitdiff
path: root/data/shaders/path-fill-vert.glsl
blob: 1752978d86ccaea5ffd986e344817c0275f0bdf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// -*- mode: c -*-

#ifdef GLSL330
layout (location = 0) in vec2 position;
#elif defined(GLSL130)
in vec2 position;
#elif defined(GLSL120)
attribute vec2 position;
#endif

#ifdef GLSL120
varying vec2 fragPosition;
#else
out vec2 fragPosition;
#endif

uniform mat4 mvp;
uniform vec4 color;

void main(void) {
  // Short-circuit because the fragments will just be discarded
  // anyway.
  if (color.a <= 0.0) {
    gl_Position = vec4(0.0, 0.0, 0.0, 1.0);
  } else {
    fragPosition = position;
    gl_Position = mvp * vec4(position, 0.0, 1.0);
  }
}