forgot to add shader files
[vkrt] / data / main.frag
diff --git a/data/main.frag b/data/main.frag
new file mode 100644 (file)
index 0000000..843bf11
--- /dev/null
@@ -0,0 +1,7 @@
+#version 450
+
+layout(location = 0) out vec4 f_color;
+void main()
+{
+       f_color = vec4(1.0, 0.0, 0.0, 1.0);
+}