summaryrefslogtreecommitdiffstats
path: root/src/video_core/host_shaders/vulkan_depthstencil_clear.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/host_shaders/vulkan_depthstencil_clear.frag')
-rw-r--r--src/video_core/host_shaders/vulkan_depthstencil_clear.frag12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/video_core/host_shaders/vulkan_depthstencil_clear.frag b/src/video_core/host_shaders/vulkan_depthstencil_clear.frag
new file mode 100644
index 000000000..1ac177c7e
--- /dev/null
+++ b/src/video_core/host_shaders/vulkan_depthstencil_clear.frag
@@ -0,0 +1,12 @@
+// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#version 460 core
+
+layout (push_constant) uniform PushConstants {
+ vec4 clear_depth;
+};
+
+void main() {
+ gl_FragDepth = clear_depth.x;
+}