diff options
author | Karol Herbst <[email protected]> | 2019-01-16 00:11:23 +0100 |
---|---|---|
committer | Karol Herbst <[email protected]> | 2019-01-19 20:01:41 +0100 |
commit | 6fefd6972438054e3fb45666b6714a5c9c4859b9 (patch) | |
tree | 059e31cfbcc28e19f6b0ff634fb108ab000e1c11 /src/compiler/nir/nir.c | |
parent | 3afc1e068f9f3ad125decc2761f7c0cf1fe2c3a6 (diff) |
nir: rename nir_var_ssbo to nir_var_mem_ssbo
Signed-off-by: Karol Herbst <[email protected]>
Acked-by: Jason Ekstrand <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.c')
-rw-r--r-- | src/compiler/nir/nir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir.c b/src/compiler/nir/nir.c index fa9f3fe7e49..2b9b1f7f981 100644 --- a/src/compiler/nir/nir.c +++ b/src/compiler/nir/nir.c @@ -143,7 +143,7 @@ nir_shader_add_variable(nir_shader *shader, nir_variable *var) case nir_var_uniform: case nir_var_mem_ubo: - case nir_var_ssbo: + case nir_var_mem_ssbo: exec_list_push_tail(&shader->uniforms, &var->node); break; |