aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2017-12-28 15:12:20 -0800
committerEric Anholt <[email protected]>2018-01-03 14:25:23 -0800
commitdeb552ca276813a243dd68ea335ab40d4b93afc0 (patch)
tree3cf4c9d40fe3bba776a82cd4c3949e3e042de711 /src/compiler
parent39811a2894743bf7e2f9818a0a1d14b6566116ee (diff)
nir: Add a helper to get the uvec4 type.
I needed this in the vc5 compiler. Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/nir_types.cpp6
-rw-r--r--src/compiler/nir_types.h1
2 files changed, 7 insertions, 0 deletions
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
@@ -298,6 +298,12 @@ glsl_vec4_type(void)
}
const glsl_type *
+glsl_uvec4_type(void)
+{
+ return glsl_type::uvec4_type;
+}
+
+const glsl_type *
glsl_int_type(void)
{
return glsl_type::int_type;
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);