summaryrefslogtreecommitdiffstats
path: root/src/video_core/host_shaders/vulkan_color_clear.vert
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/host_shaders/vulkan_color_clear.vert')
-rw-r--r--src/video_core/host_shaders/vulkan_color_clear.vert10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/video_core/host_shaders/vulkan_color_clear.vert b/src/video_core/host_shaders/vulkan_color_clear.vert
new file mode 100644
index 000000000..d85883141
--- /dev/null
+++ b/src/video_core/host_shaders/vulkan_color_clear.vert
@@ -0,0 +1,10 @@
+// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#version 460 core
+
+void main() {
+ float x = float((gl_VertexIndex & 1) << 2);
+ float y = float((gl_VertexIndex & 2) << 1);
+ gl_Position = vec4(x - 1.0, y - 1.0, 0.0, 1.0);
+}