瀏覽代碼

Update depth_write.fs

pull/5200/head
Ray 2 週之前
父節點
當前提交
8ada37d967
共有 1 個檔案被更改,包括 4 行新增2 行删除
  1. +4
    -2
      examples/shaders/resources/shaders/glsl100/depth_write.fs

+ 4
- 2
examples/shaders/resources/shaders/glsl100/depth_write.fs 查看文件

@ -1,11 +1,13 @@
#version 100
#extension GL_EXT_frag_depth : enable
precision mediump float;
// Input vertex attributes (from vertex shader)
varying vec2 fragTexCoord;
varying vec4 fragColor;
// Input uniform values
uniform sampler2D texture0;
uniform vec4 colDiffuse;
@ -15,4 +17,4 @@ void main()
gl_FragColor = texelColor*colDiffuse*fragColor;
gl_FragDepthEXT = 1.0 - gl_FragCoord.z;
}
}

Loading…
取消
儲存