summaryrefslogtreecommitdiffstats
path: root/gfx/wgpu/player/tests/data/quad.frag
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/wgpu/player/tests/data/quad.frag')
-rw-r--r--gfx/wgpu/player/tests/data/quad.frag7
1 files changed, 7 insertions, 0 deletions
diff --git a/gfx/wgpu/player/tests/data/quad.frag b/gfx/wgpu/player/tests/data/quad.frag
new file mode 100644
index 0000000000..d3b9253bda
--- /dev/null
+++ b/gfx/wgpu/player/tests/data/quad.frag
@@ -0,0 +1,7 @@
+#version 450
+
+layout(location = 0) out vec4 outColor;
+
+void main() {
+ outColor = vec4(1.0, 1.0, 1.0, 1.0);
+} \ No newline at end of file