summaryrefslogtreecommitdiffstats
path: root/src/video_core/host_shaders/convert_abgr8_to_d32f.frag
diff options
context:
space:
mode:
authorSquall-Leonhart <danialhorton@hotmail.com>2023-10-15 18:17:53 +0200
committerSquall-Leonhart <danialhorton@hotmail.com>2023-10-15 18:17:53 +0200
commitf40f65f5d2123c79ffa4c8587d20dada624b5047 (patch)
treeff28db65b491e718ef79b001426a5f8b53c49bdb /src/video_core/host_shaders/convert_abgr8_to_d32f.frag
parentmissed this line when editing the copypasta (diff)
downloadyuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar.gz
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar.bz2
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar.lz
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar.xz
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar.zst
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/host_shaders/convert_abgr8_to_d32f.frag18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/video_core/host_shaders/convert_abgr8_to_d32f.frag b/src/video_core/host_shaders/convert_abgr8_to_d32f.frag
new file mode 100644
index 000000000..a1880b916
--- /dev/null
+++ b/src/video_core/host_shaders/convert_abgr8_to_d32f.frag
@@ -0,0 +1,18 @@
+// SPDX-FileCopyrightText: Copyright 2023 Your Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#version 450
+
+layout(binding = 0) uniform sampler2D color_texture;
+
+void main() {
+ ivec2 coord = ivec2(gl_FragCoord.xy);
+ vec4 color = texelFetch(color_texture, coord, 0).abgr;
+
+ uvec4 bytes = uvec4(color * (exp2(8) - 1.0f)) << uvec4(24, 16, 8, 0);
+ uint depth_unorm = bytes.x | bytes.y | bytes.z | bytes.w;
+
+ float depth_float = uintBitsToFloat(depth_unorm);
+
+ gl_FragDepth = depth_float;
+}