|
@@ -23,7 +23,7 @@ out vec4 finalColor;
|
|
|
void main()
|
|
|
{
|
|
|
// 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;
|
|
|
else color = texture(environmentMap, fragPosition).rgb;
|