aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/data/3d.vert
diff options
context:
space:
mode:
Diffstat (limited to 'stockton-render/src/data/3d.vert')
-rw-r--r--stockton-render/src/data/3d.vert23
1 files changed, 0 insertions, 23 deletions
diff --git a/stockton-render/src/data/3d.vert b/stockton-render/src/data/3d.vert
deleted file mode 100644
index aaee1a5..0000000
--- a/stockton-render/src/data/3d.vert
+++ /dev/null
@@ -1,23 +0,0 @@
-#version 450
-
-// DescriptorSet 0 = Matrices
-layout (push_constant) uniform PushConsts {
- mat4 vp;
-} push;
-
-layout (location = 0) in vec3 position;
-layout (location = 1) in int tex;
-layout (location = 2) in vec2 uv;
-
-out gl_PerVertex {
- vec4 gl_Position;
-};
-layout (location = 1) out vec2 frag_uv;
-layout (location = 2) out flat int frag_tex;
-
-void main()
-{
- gl_Position = push.vp * vec4(position, 1.0);
- frag_uv = uv;
- frag_tex = tex;
-} \ No newline at end of file