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-Tag: upstream/17.1.0~2227 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7593f2ac1b65b764cdf49007553bf58dd85cd3f5;p=platform%2Fupstream%2Fmesa.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 cc90efd..52fd0e9 100644 --- a/src/compiler/nir_types.cpp +++ b/src/compiler/nir_types.cpp @@ -289,6 +289,18 @@ glsl_uint_type(void) } 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) { return glsl_type::bool_type; diff --git a/src/compiler/nir_types.h b/src/compiler/nir_types.h index cafb8c1..e99b226 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);