From: Jason Ekstrand Date: Tue, 1 Sep 2020 21:24:19 +0000 (-0500) Subject: compiler/types: Make booleans 32-bit for cl_size/align X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=ca11b17b7b796db7077ed166ba2e33e77ec7088c compiler/types: Make booleans 32-bit for cl_size/align OpenCL doesn't mandate a size and this is consistent with the rest of the glsl_type system. While we're here, we also clean ::cl_size() up a bit and use a new explicit_type_scalar_byte_size() helper. Reviewed-by: Karol Herbst Part-of: --- diff --git a/src/compiler/glsl_types.cpp b/src/compiler/glsl_types.cpp index ab4c2954864..1aeb4439544 100644 --- a/src/compiler/glsl_types.cpp +++ b/src/compiler/glsl_types.cpp @@ -2427,6 +2427,15 @@ glsl_type::get_explicit_interface_type(bool supports_std430) const } } +static unsigned +explicit_type_scalar_byte_size(const glsl_type *type) +{ + if (type->base_type == GLSL_TYPE_BOOL) + return 4; + else + return glsl_base_type_get_bit_size(type->base_type) / 8; +} + /* This differs from get_explicit_std430_type() in that it: * - can size arrays slightly smaller ("stride * (len - 1) + elem_size" instead * of "stride * len") @@ -2951,11 +2960,9 @@ glsl_type::cl_alignment() const unsigned glsl_type::cl_size() const { - if (this->is_scalar()) { - return glsl_base_type_get_bit_size(this->base_type) / 8; - } else if (this->is_vector()) { - unsigned vec_elemns = this->vector_elements == 3 ? 4 : this->vector_elements; - return vec_elemns * glsl_base_type_get_bit_size(this->base_type) / 8; + if (this->is_scalar() || this->is_vector()) { + return util_next_power_of_two(this->vector_elements) * + explicit_type_scalar_byte_size(this); } else if (this->is_array()) { unsigned size = this->without_array()->cl_size(); return size * this->length;