diff options
author | Squall Leonhart <danialhorton@hotmail.com> | 2023-10-15 21:07:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-15 21:07:26 +0200 |
commit | 90c56f5dc1cab59adbd446aa77b12e64c6c59474 (patch) | |
tree | 4f5826488e9efe5c172e57f38e6b12c08aff35ba /src | |
parent | meant to add the unorms as well (diff) | |
download | yuzu-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 |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/host_shaders/convert_d32f_to_bgra8.frag | 2 |
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 +} |