16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-19 03:09:18 +02:00

texture load fixes, shader changes

This commit is contained in:
milek7
2018-07-19 19:10:50 +02:00
parent a729c5fa1d
commit 4d198840dc
5 changed files with 20 additions and 29 deletions

View File

@@ -44,6 +44,6 @@ void main()
vec2 texcoord = f_coords;
vec3 hdr_color = texture(tex1, texcoord).xyz;
vec3 mapped= ACESFilm(hdr_color);
vec3 mapped = ACESFilm(hdr_color);
gl_FragColor = vec4(mapped, 1.0);
}