summaryrefslogtreecommitdiff
path: root/data/shaders/path-fill-frag.glsl
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2023-09-28 07:43:07 -0400
committerDavid Thompson <dthompson2@worcester.edu>2023-09-28 07:43:31 -0400
commit0297cf27b245cc3ef26fac5825366fa583452779 (patch)
tree3750bb9b3b17e2a3bdd8d255408ddf583d0704d2 /data/shaders/path-fill-frag.glsl
parent9ceb616f627b5d98bcb337bdc5f384108277a0ae (diff)
Fix GLSL 1.2 versions of a couple fragment shaders.
Diffstat (limited to 'data/shaders/path-fill-frag.glsl')
-rw-r--r--data/shaders/path-fill-frag.glsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/shaders/path-fill-frag.glsl b/data/shaders/path-fill-frag.glsl
index ba9c5a6..e839318 100644
--- a/data/shaders/path-fill-frag.glsl
+++ b/data/shaders/path-fill-frag.glsl
@@ -7,7 +7,7 @@ out vec4 fragColor;
#endif
#ifdef GLSL120
-attribute vec2 fragPosition;
+varying vec2 fragPosition;
#else
in vec2 fragPosition;
#endif