From deb552ca276813a243dd68ea335ab40d4b93afc0 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 28 Dec 2017 15:12:20 -0800 Subject: [PATCH] nir: Add a helper to get the uvec4 type. I needed this in the vc5 compiler. Reviewed-by: Kenneth Graunke Reviewed-by: Jason Ekstrand --- src/compiler/nir_types.cpp | 6 ++++++ src/compiler/nir_types.h | 1 + 2 files changed, 7 insertions(+) diff --git a/src/compiler/nir_types.cpp b/src/compiler/nir_types.cpp index 377de0c9c7b..cbdd452dc81 100644 --- a/src/compiler/nir_types.cpp +++ b/src/compiler/nir_types.cpp @@ -297,6 +297,12 @@ glsl_vec4_type(void) return glsl_type::vec4_type; } +const glsl_type * +glsl_uvec4_type(void) +{ + return glsl_type::uvec4_type; +} + const glsl_type * glsl_int_type(void) { diff --git a/src/compiler/nir_types.h b/src/compiler/nir_types.h index daff9732509..4397c2406f9 100644 --- a/src/compiler/nir_types.h +++ b/src/compiler/nir_types.h @@ -136,6 +136,7 @@ const struct glsl_type *glsl_double_type(void); const struct glsl_type *glsl_vec_type(unsigned n); const struct glsl_type *glsl_dvec_type(unsigned n); const struct glsl_type *glsl_vec4_type(void); +const struct glsl_type *glsl_uvec4_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); -- 2.30.2