Smoke: Don't use min
as an uniform name
This is an attempt to fix report T47991.
This commit is contained in:
parent
673ddd48da
commit
8cc7460495
@ -331,7 +331,7 @@ void draw_smoke_volume(SmokeDomainSettings *sds, Object *ob,
|
||||
int densityscale_location = GPU_shader_get_uniform(shader, "density_scale");
|
||||
int invsize_location = GPU_shader_get_uniform(shader, "invsize");
|
||||
int ob_sizei_location = GPU_shader_get_uniform(shader, "ob_sizei");
|
||||
int min_location = GPU_shader_get_uniform(shader, "min");
|
||||
int min_location = GPU_shader_get_uniform(shader, "min_location");
|
||||
|
||||
GPU_shader_bind(shader);
|
||||
|
||||
|
@ -1,12 +1,12 @@
|
||||
|
||||
varying vec3 coords;
|
||||
|
||||
uniform vec3 min;
|
||||
uniform vec3 min_location;
|
||||
uniform vec3 invsize;
|
||||
uniform vec3 ob_sizei;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position = gl_ModelViewProjectionMatrix * vec4(gl_Vertex.xyz * ob_sizei, 1.0);
|
||||
coords = (gl_Vertex.xyz - min) * invsize;
|
||||
coords = (gl_Vertex.xyz - min_location) * invsize;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user