From 5c229e5fbd8ffa573ab2c1225f182036792a75af Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Mon, 13 Dec 2010 11:19:38 -0800 Subject: glsl: Expose a public glsl_type::void_type const pointer. This is analogous to glsl_type::int_type and all the others. --- src/glsl/builtin_types.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/glsl/builtin_types.h') diff --git a/src/glsl/builtin_types.h b/src/glsl/builtin_types.h index 443ae1606e..8ccbf6e312 100644 --- a/src/glsl/builtin_types.h +++ b/src/glsl/builtin_types.h @@ -24,10 +24,11 @@ const glsl_type glsl_type::_error_type = glsl_type(GL_INVALID_ENUM, GLSL_TYPE_ERROR, 0, 0, ""); -const glsl_type glsl_type::void_type = +const glsl_type glsl_type::_void_type = glsl_type(GL_INVALID_ENUM, GLSL_TYPE_VOID, 0, 0, "void"); const glsl_type *const glsl_type::error_type = & glsl_type::_error_type; +const glsl_type *const glsl_type::void_type = & glsl_type::_void_type; /** \name Core built-in types * -- cgit v1.2.3