X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fcompiler%2Fnir_types.cpp;h=f86f0a7986806904c6d5d546847cbe1c682ce2ad;hb=8c43edf9f917a801a18940bb570a295b7eed7f90;hp=70ae1173c363b5b7ea93befe714ed0f7881c4cf5;hpb=bc79442f3fa23ecb40fcc67ea3cf4fd73fb0d3fe;p=mesa.git diff --git a/src/compiler/nir_types.cpp b/src/compiler/nir_types.cpp index 70ae1173c36..f86f0a79868 100644 --- a/src/compiler/nir_types.cpp +++ b/src/compiler/nir_types.cpp @@ -360,6 +360,13 @@ glsl_sampler_type_is_array(const struct glsl_type *type) return type->sampler_array; } +bool +glsl_struct_type_is_packed(const struct glsl_type *type) +{ + assert(glsl_type_is_struct(type)); + return type->packed; +} + bool glsl_type_is_dual_slot(const struct glsl_type *type) { @@ -579,6 +586,12 @@ glsl_bare_sampler_type() return glsl_type::sampler_type; } +const struct glsl_type * +glsl_bare_shadow_sampler_type() +{ + return glsl_type::samplerShadow_type; +} + const struct glsl_type * glsl_image_type(enum glsl_sampler_dim dim, bool is_array, enum glsl_base_type base_type) @@ -748,6 +761,14 @@ glsl_get_cl_alignment(const struct glsl_type *type) return type->cl_alignment(); } +void +glsl_get_cl_type_size_align(const struct glsl_type *type, + unsigned *size, unsigned *align) +{ + *size = glsl_get_cl_size(type); + *align = glsl_get_cl_alignment(type); +} + unsigned glsl_type_get_sampler_count(const struct glsl_type *type) {