소스 검색

lets not convert depth to greyscale since this makes the exhaust and tire smoke light gray/white

tiresmoke should be a darker gray.
Squall-Leonhart 2 년 전
부모
커밋
a17cde7b2c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/video_core/host_shaders/convert_d32f_to_abgr8.frag

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

@@ -10,5 +10,5 @@ layout(location = 0) out vec4 color;
 void main() {
     ivec2 coord = ivec2(gl_FragCoord.xy);
     float depth = textureLod(depth_tex, coord, 0).r;
-    color = vec4(vec3(depth), 1.0); // Convert depth to grayscale color
+    color = vec4(depth, depth*depth, sqrt(depth), 1.0); // Convert depth to color
 }