Small shader fix on vec3 initialization #1298
This commit is contained in:
parent
b5eb104b08
commit
488c60d139
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ out vec4 finalColor;
|
||||||
void main()
|
void main()
|
||||||
{
|
{
|
||||||
// Fetch color from texture map
|
// Fetch color from texture map
|
||||||
vec3 color = { 0.0 };
|
vec3 color = vec3(0.0);
|
||||||
|
|
||||||
if (vflipped) color = texture(environmentMap, vec3(fragPosition.x, -fragPosition.y, fragPosition.z)).rgb;
|
if (vflipped) color = texture(environmentMap, vec3(fragPosition.x, -fragPosition.y, fragPosition.z)).rgb;
|
||||||
else color = texture(environmentMap, fragPosition).rgb;
|
else color = texture(environmentMap, fragPosition).rgb;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue