aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/scenegraph/shared/squircle_rhi.vert
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/scenegraph/shared/squircle_rhi.vert')
-rw-r--r--examples/quick/scenegraph/shared/squircle_rhi.vert7
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/quick/scenegraph/shared/squircle_rhi.vert b/examples/quick/scenegraph/shared/squircle_rhi.vert
index b57dfdfe10..bf079ab786 100644
--- a/examples/quick/scenegraph/shared/squircle_rhi.vert
+++ b/examples/quick/scenegraph/shared/squircle_rhi.vert
@@ -1,13 +1,16 @@
#version 440
layout(location = 0) in vec4 vertices;
-
layout(location = 0) out vec2 coords;
-out gl_PerVertex { vec4 gl_Position; };
+layout(std140, binding = 0) uniform buf {
+ float t;
+ float y_dir;
+};
void main()
{
gl_Position = vertices;
coords = vertices.xy;
+ coords.y *= y_dir;
}