summaryrefslogtreecommitdiffstats
path: root/examples/vulkan/hellovulkantexture/texture.vert
diff options
context:
space:
mode:
Diffstat (limited to 'examples/vulkan/hellovulkantexture/texture.vert')
-rw-r--r--examples/vulkan/hellovulkantexture/texture.vert18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/vulkan/hellovulkantexture/texture.vert b/examples/vulkan/hellovulkantexture/texture.vert
deleted file mode 100644
index de486cb772..0000000000
--- a/examples/vulkan/hellovulkantexture/texture.vert
+++ /dev/null
@@ -1,18 +0,0 @@
-#version 440
-
-layout(location = 0) in vec4 position;
-layout(location = 1) in vec2 texcoord;
-
-layout(location = 0) out vec2 v_texcoord;
-
-layout(std140, binding = 0) uniform buf {
- mat4 mvp;
-} ubuf;
-
-out gl_PerVertex { vec4 gl_Position; };
-
-void main()
-{
- v_texcoord = texcoord;
- gl_Position = ubuf.mvp * position;
-}