Additionnal fixes
This commit is contained in:
parent
4c4aba2ad8
commit
300a09746f
@ -24,5 +24,5 @@ void main(void)
|
|||||||
#endif
|
#endif
|
||||||
col.xyz *= pow(color.xyz, vec3(2.2));
|
col.xyz *= pow(color.xyz, vec3(2.2));
|
||||||
float specmap = texture(SpecMap, uv).g;
|
float specmap = texture(SpecMap, uv).g;
|
||||||
FragColor = vec4(getLightFactor(color.xyz, vec3(1.), specmap), 1.);
|
FragColor = vec4(getLightFactor(col.xyz, vec3(1.), specmap), 1.);
|
||||||
}
|
}
|
||||||
|
@ -23,5 +23,5 @@ void main(void)
|
|||||||
col.xyz *= pow(color.xyz, vec3(2.2));
|
col.xyz *= pow(color.xyz, vec3(2.2));
|
||||||
if (col.a * color.a < 0.5) discard;
|
if (col.a * color.a < 0.5) discard;
|
||||||
float specmap = texture(SpecMap, uv).g;
|
float specmap = texture(SpecMap, uv).g;
|
||||||
FragColor = vec4(getLightFactor(color.xyz, vec3(1.), specmap), 1.);
|
FragColor = vec4(getLightFactor(col.xyz, vec3(1.), specmap), 1.);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user