ソースを参照

added missing trailing line.

Squall Leonhart 2 年 前
コミット
90c56f5dc1
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/video_core/host_shaders/convert_d32f_to_bgra8.frag

+ 1 - 1
src/video_core/host_shaders/convert_d32f_to_bgra8.frag

@@ -12,4 +12,4 @@ void main() {
     float depth = texelFetch(depth_tex, coord, 0).r;
     float depth = texelFetch(depth_tex, coord, 0).r;
     color = vec4(depth, depth, depth, 1.0);
     color = vec4(depth, depth, depth, 1.0);
     color = color.bgra; // Swap color channels for BGRA format
     color = color.bgra; // Swap color channels for BGRA format
-}
+}