Add is_error and is_void type queries
authorIan Romanick <ian.d.romanick@intel.com>
Tue, 23 Mar 2010 19:28:28 +0000 (12:28 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Tue, 23 Mar 2010 19:28:28 +0000 (12:28 -0700)
glsl_types.h

index 45037b3..57f339a 100644 (file)
@@ -166,6 +166,22 @@ struct glsl_type {
       /* GLSL only has float matrices. */
       return (matrix_rows > 0) && (base_type == GLSL_TYPE_FLOAT);
    }
+
+   /**
+    * Query whether or not a type is the void type singleton.
+    */
+   bool is_void() const
+   {
+      return base_type == GLSL_TYPE_VOID;
+   }
+
+   /**
+    * Query whether or not a type is the error type singleton.
+    */
+   bool is_error() const
+   {
+      return base_type == GLSL_TYPE_ERROR;
+   }
 };
 
 struct glsl_struct_field {