nir: Fix typo in "ushr by 0" algebraic replacement
[mesa.git] / src / glsl / nir / nir_types.h
index 6f91e2dce8db74fe0e7b276f25b03833b6c98789..276d4ad6234bfbd2f38438d80a47aa7bb8db2487 100644 (file)
@@ -69,6 +69,10 @@ bool glsl_type_is_scalar(const struct glsl_type *type);
 bool glsl_type_is_matrix(const struct glsl_type *type);
 
 const struct glsl_type *glsl_void_type(void);
+const struct glsl_type *glsl_float_type(void);
+const struct glsl_type *glsl_vec4_type(void);
+const struct glsl_type *glsl_array_type(const struct glsl_type *base,
+                                        unsigned elements);
 
 #ifdef __cplusplus
 }