summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSquall Leonhart <danialhorton@hotmail.com>2023-10-15 21:07:26 +0200
committerGitHub <noreply@github.com>2023-10-15 21:07:26 +0200
commit90c56f5dc1cab59adbd446aa77b12e64c6c59474 (patch)
tree4f5826488e9efe5c172e57f38e6b12c08aff35ba
parentmeant to add the unorms as well (diff)
downloadyuzu-90c56f5dc1cab59adbd446aa77b12e64c6c59474.tar
yuzu-90c56f5dc1cab59adbd446aa77b12e64c6c59474.tar.gz
yuzu-90c56f5dc1cab59adbd446aa77b12e64c6c59474.tar.bz2
yuzu-90c56f5dc1cab59adbd446aa77b12e64c6c59474.tar.lz
yuzu-90c56f5dc1cab59adbd446aa77b12e64c6c59474.tar.xz
yuzu-90c56f5dc1cab59adbd446aa77b12e64c6c59474.tar.zst
yuzu-90c56f5dc1cab59adbd446aa77b12e64c6c59474.zip
-rw-r--r--src/video_core/host_shaders/convert_d32f_to_bgra8.frag2
1 files changed, 1 insertions, 1 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
index 82dfca739..789c3e078 100644
--- a/src/video_core/host_shaders/convert_d32f_to_bgra8.frag
+++ b/src/video_core/host_shaders/convert_d32f_to_bgra8.frag
@@ -12,4 +12,4 @@ void main() {
float depth = texelFetch(depth_tex, coord, 0).r;
color = vec4(depth, depth, depth, 1.0);
color = color.bgra; // Swap color channels for BGRA format
-} \ No newline at end of file
+}