summaryrefslogtreecommitdiffstats
path: root/tests/manual/rhi/stenciloutline/material.vert
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/rhi/stenciloutline/material.vert')
-rw-r--r--tests/manual/rhi/stenciloutline/material.vert13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/manual/rhi/stenciloutline/material.vert b/tests/manual/rhi/stenciloutline/material.vert
new file mode 100644
index 0000000000..0fd83be568
--- /dev/null
+++ b/tests/manual/rhi/stenciloutline/material.vert
@@ -0,0 +1,13 @@
+#version 440
+
+layout(location = 0) in vec4 position;
+
+layout(std140, binding = 0) uniform buf {
+ mat4 mvp;
+ vec3 color;
+};
+
+void main()
+{
+ gl_Position = mvp * position;
+}