summaryrefslogtreecommitdiffstats
path: root/examples/vulkan/hellovulkantexture/texture.vert
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2023-03-22 15:55:24 +0100
committerLaszlo Agocs <laszlo.agocs@qt.io>2023-03-22 23:17:48 +0100
commitb5b954fac12414c315369344b1664bf220a59dad (patch)
tree5669e86bbc3a84488c69b84158f35569706278a1 /examples/vulkan/hellovulkantexture/texture.vert
parent580fc133a6149fb06ac8b0a4a53a955f9f21fa5f (diff)
Move hellovulkantexture example to manual test
Because it is the least documented one, and compared to the other Vulkan examples it does not add anything new, it just dives deeper into Vulkan. Pick-to: 6.5 Change-Id: Iecf3e04625fba256ea8134da57f54498ee2010db Reviewed-by: Christian Strømme <christian.stromme@qt.io>
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;
-}