mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Fix texture sampling syntax
This commit is contained in:
parent
a1d8265935
commit
f62718044d
@ -32,7 +32,7 @@ float hash_fast(uvec3 q)
|
||||
|
||||
// 2D, but using shifted 2D textures
|
||||
float noise_2d(vec2 pos) {
|
||||
return texture(t_noise, pos).x;
|
||||
return texture(sampler2D(t_noise, s_noise), pos).x;
|
||||
}
|
||||
|
||||
// 3D, but using shifted 2D textures
|
||||
|
Loading…
Reference in New Issue
Block a user