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.vert13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/quick/scenegraph/shared/squircle_rhi.vert b/examples/quick/scenegraph/shared/squircle_rhi.vert
new file mode 100644
index 0000000000..b57dfdfe10
--- /dev/null
+++ b/examples/quick/scenegraph/shared/squircle_rhi.vert
@@ -0,0 +1,13 @@
+#version 440
+
+layout(location = 0) in vec4 vertices;
+
+layout(location = 0) out vec2 coords;
+
+out gl_PerVertex { vec4 gl_Position; };
+
+void main()
+{
+ gl_Position = vertices;
+ coords = vertices.xy;
+}