summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Squall Leonhart2023-10-16 06:07:26 +1100
committerGravatar GitHub2023-10-16 06:07:26 +1100
commit90c56f5dc1cab59adbd446aa77b12e64c6c59474 (patch)
tree4f5826488e9efe5c172e57f38e6b12c08aff35ba
parentmeant to add the unorms as well (diff)
downloadyuzu-90c56f5dc1cab59adbd446aa77b12e64c6c59474.tar.gz
yuzu-90c56f5dc1cab59adbd446aa77b12e64c6c59474.tar.xz
yuzu-90c56f5dc1cab59adbd446aa77b12e64c6c59474.zip
added missing trailing line.
-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() {
12 float depth = texelFetch(depth_tex, coord, 0).r; 12 float depth = texelFetch(depth_tex, coord, 0).r;
13 color = vec4(depth, depth, depth, 1.0); 13 color = vec4(depth, depth, depth, 1.0);
14 color = color.bgra; // Swap color channels for BGRA format 14 color = color.bgra; // Swap color channels for BGRA format
15} \ No newline at end of file 15}