summaryrefslogtreecommitdiffstats
path: root/src/video_core/host_shaders/convert_d32f_to_bgra8.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/host_shaders/convert_d32f_to_bgra8.frag')
-rw-r--r--src/video_core/host_shaders/convert_d32f_to_bgra8.frag15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/video_core/host_shaders/convert_d32f_to_bgra8.frag b/src/video_core/host_shaders/convert_d32f_to_bgra8.frag
deleted file mode 100644
index 789c3e078..000000000
--- a/src/video_core/host_shaders/convert_d32f_to_bgra8.frag
+++ /dev/null
@@ -1,15 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#version 450
-
-layout(binding = 0) uniform sampler2D depth_tex;
-
-layout(location = 0) out vec4 color;
-
-void main() {
- ivec2 coord = ivec2(gl_FragCoord.xy);
- float depth = texelFetch(depth_tex, coord, 0).r;
- color = vec4(depth, depth, depth, 1.0);
- color = color.bgra; // Swap color channels for BGRA format
-}