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 82dfca739a..789c3e0781 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 +}