Module: Mesa Branch: master Commit: 7593f2ac1b65b764cdf49007553bf58dd85cd3f5 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7593f2ac1b65b764cdf49007553bf58dd85cd3f5
Author: Dave Airlie <[email protected]> Date: Wed Feb 15 04:51:02 2017 +0000 nir/types: add C accessors for 64-bit integer types. Reviewed-by: Jason Ekstrand <[email protected]> Signed-off-by: Dave Airlie <[email protected]> --- src/compiler/nir_types.cpp | 12 ++++++++++++ src/compiler/nir_types.h | 2 ++ 2 files changed, 14 insertions(+) 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); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
