From: Dave Airlie Date: Wed, 15 Feb 2017 04:51:02 +0000 (+0000) Subject: nir/types: add C accessors for 64-bit integer types. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7593f2ac1b65b764cdf49007553bf58dd85cd3f5;p=mesa.git nir/types: add C accessors for 64-bit integer types. Reviewed-by: Jason Ekstrand Signed-off-by: Dave Airlie --- diff --git a/src/compiler/nir_types.cpp b/src/compiler/nir_types.cpp index cc90efd2ae7..52fd0e95c84 100644 --- a/src/compiler/nir_types.cpp +++ b/src/compiler/nir_types.cpp @@ -288,6 +288,18 @@ glsl_uint_type(void) return glsl_type::uint_type; } +const glsl_type * +glsl_int64_t_type(void) +{ + return glsl_type::int64_t_type; +} + +const glsl_type * +glsl_uint64_t_type(void) +{ + return glsl_type::uint64_t_type; +} + const glsl_type * glsl_bool_type(void) { diff --git a/src/compiler/nir_types.h b/src/compiler/nir_types.h index cafb8c18294..e99b2262162 100644 --- a/src/compiler/nir_types.h +++ b/src/compiler/nir_types.h @@ -128,6 +128,8 @@ const struct glsl_type *glsl_dvec_type(unsigned n); const struct glsl_type *glsl_vec4_type(void); const struct glsl_type *glsl_int_type(void); const struct glsl_type *glsl_uint_type(void); +const struct glsl_type *glsl_int64_t_type(void); +const struct glsl_type *glsl_uint64_t_type(void); const struct glsl_type *glsl_bool_type(void); const struct glsl_type *glsl_scalar_type(enum glsl_base_type base_type);