diff options
author | Tapani Pälli <[email protected]> | 2019-01-22 09:37:58 +0200 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2019-01-22 13:09:15 +0200 |
commit | da3ca69afadb142c1591c75c2bfd345c8d4337de (patch) | |
tree | 61fad908b1a5035f9607cb6d7a6d2fafa79445e4 /src/compiler | |
parent | 41a0c0039225753b26f2ce61b49fef8d45c616ad (diff) |
nir: cleanup glsl_get_struct_field_offset, glsl_get_explicit_stride
Take away const qualifier from return type of these functions as
-Wignored-qualifiers points out it is ignored for these cases.
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/nir_types.cpp | 4 | ||||
-rw-r--r-- | src/compiler/nir_types.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/compiler/nir_types.cpp b/src/compiler/nir_types.cpp index 356252276b4..7ea5ef9b831 100644 --- a/src/compiler/nir_types.cpp +++ b/src/compiler/nir_types.cpp @@ -71,14 +71,14 @@ glsl_get_struct_field(const glsl_type *type, unsigned index) return type->fields.structure[index].type; } -const int +int glsl_get_struct_field_offset(const struct glsl_type *type, unsigned index) { return type->fields.structure[index].offset; } -const unsigned +unsigned glsl_get_explicit_stride(const struct glsl_type *type) { return type->explicit_stride; diff --git a/src/compiler/nir_types.h b/src/compiler/nir_types.h index d17671b9400..15891ce43be 100644 --- a/src/compiler/nir_types.h +++ b/src/compiler/nir_types.h @@ -46,10 +46,10 @@ const char *glsl_get_type_name(const struct glsl_type *type); const struct glsl_type *glsl_get_struct_field(const struct glsl_type *type, unsigned index); -const int glsl_get_struct_field_offset(const struct glsl_type *type, - unsigned index); +int glsl_get_struct_field_offset(const struct glsl_type *type, + unsigned index); -const unsigned glsl_get_explicit_stride(const struct glsl_type *type); +unsigned glsl_get_explicit_stride(const struct glsl_type *type); const struct glsl_type *glsl_get_array_element(const struct glsl_type *type); const struct glsl_type *glsl_without_array(const struct glsl_type *type); const struct glsl_type *glsl_without_array_or_matrix(const struct glsl_type *type); |