aboutsummaryrefslogtreecommitdiffstats
path: root/shaders/rect.frag
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/rect.frag')
-rw-r--r--shaders/rect.frag6
1 files changed, 3 insertions, 3 deletions
diff --git a/shaders/rect.frag b/shaders/rect.frag
index 8622782..ecec50d 100644
--- a/shaders/rect.frag
+++ b/shaders/rect.frag
@@ -8,9 +8,9 @@
specified precisely in pixels to draw sharp lines. The border width is just
hardcoded, but could be made a uniform or vertex attribute easily enough. */
-noperspective in vec2 f_uv;
-noperspective in vec2 f_size;
-noperspective in vec4 f_fillColor;
+INTER(location = 0) noperspective in vec2 f_uv;
+INTER(location = 1) noperspective in vec2 f_size;
+INTER(location = 2) noperspective in vec4 f_fillColor;
layout(location = 0) out vec4 FragColor;