diff options
author | Rob Clark <[email protected]> | 2016-05-11 15:05:09 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-05-12 13:39:40 -0400 |
commit | 9d3cc80b752b236bc51b78a3d99920748a1a230a (patch) | |
tree | c518c99153ecd2af941e400d47383ac90e9632cf /src/compiler/nir/nir_builder.h | |
parent | b19cff1639f9c6e3074d11f1199807603046ea4b (diff) |
nir: glsl_get_bit_size() should take glsl_type
It's what all the call-sites once, so gets rid of a bunch of inlined
glsl_get_base_type() at the call-sites.
Signed-off-by: Rob Clark <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_builder.h')
-rw-r--r-- | src/compiler/nir/nir_builder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_builder.h b/src/compiler/nir/nir_builder.h index 4fa97799d31..a142d48b82e 100644 --- a/src/compiler/nir/nir_builder.h +++ b/src/compiler/nir/nir_builder.h @@ -403,7 +403,7 @@ nir_load_var(nir_builder *build, nir_variable *var) load->num_components = num_components; load->variables[0] = nir_deref_var_create(load, var); nir_ssa_dest_init(&load->instr, &load->dest, num_components, - glsl_get_bit_size(glsl_get_base_type(var->type)), NULL); + glsl_get_bit_size(var->type), NULL); nir_builder_instr_insert(build, &load->instr); return &load->dest.ssa; } |