aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/data/3d.frag
diff options
context:
space:
mode:
Diffstat (limited to 'stockton-render/src/data/3d.frag')
-rw-r--r--stockton-render/src/data/3d.frag15
1 files changed, 15 insertions, 0 deletions
diff --git a/stockton-render/src/data/3d.frag b/stockton-render/src/data/3d.frag
new file mode 100644
index 0000000..336d9fe
--- /dev/null
+++ b/stockton-render/src/data/3d.frag
@@ -0,0 +1,15 @@
+#version 450
+
+// DescriptorSet 0 = Textures
+layout(set = 0, binding = 0) uniform texture2D tex[8];
+layout(set = 0, binding = 1) uniform sampler samp[8];
+
+layout (location = 1) in vec2 frag_uv;
+layout (location = 2) in flat int frag_tex;
+
+layout (location = 0) out vec4 color;
+
+void main()
+{
+ color = texture(sampler2D(tex[frag_tex % 8], samp[frag_tex % 8]), frag_uv);
+} \ No newline at end of file