fix uninitialized shader variable
This commit is contained in:
@@ -7,9 +7,9 @@ in vec2 fragPosScreen;
|
||||
out vec4 outputColor;
|
||||
|
||||
void main() {
|
||||
vec4 texColor = texture(tex, fragPosScreen);
|
||||
vec4 texColor = texture(tex, fragPosScreen);
|
||||
if (texColor.a < 1e-4)
|
||||
discard;
|
||||
|
||||
outputColor = vec4(pow(texColor.rgb / exposure, vec3(1.0/gamma)), 1.0f);
|
||||
outputColor = vec4(pow(texColor.rgb * exposure, vec3(1.0/gamma)), 1.0f);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user