diff options
Diffstat (limited to 'res/text.v.glsl')
-rw-r--r-- | res/text.v.glsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/res/text.v.glsl b/res/text.v.glsl index 369e7c7e..5189980f 100644 --- a/res/text.v.glsl +++ b/res/text.v.glsl @@ -45,8 +45,8 @@ void main() // Compute vertex corner position vec2 position; - position.x = (gl_VertexID == 0 || gl_VertexID == 1) ? 1. : 0; - position.y = (gl_VertexID == 0 || gl_VertexID == 3) ? 0. : 1; + position.x = (gl_VertexID == 0 || gl_VertexID == 1) ? 1. : 0.; + position.y = (gl_VertexID == 0 || gl_VertexID == 3) ? 0. : 1.; // Position of cell from top-left vec2 cellPosition = cellDim * gridCoords; |