浏览代码

Small shader fix on vec3 initialization #1298

pull/1330/head
raysan5 4 年前
父节点
当前提交
488c60d139
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      examples/models/resources/shaders/glsl330/skybox.fs

+ 1
- 1
examples/models/resources/shaders/glsl330/skybox.fs 查看文件

@ -23,7 +23,7 @@ out vec4 finalColor;
void main()
{
// Fetch color from texture map
vec3 color = nf">{ 0.0 };
vec3 color = err">vec3(0.0);
if (vflipped) color = texture(environmentMap, vec3(fragPosition.x, -fragPosition.y, fragPosition.z)).rgb;
else color = texture(environmentMap, fragPosition).rgb;

正在加载...
取消
保存