Add support for GL_ARB_draw_buffers extension
diff --git a/glsl_parser_extras.h b/glsl_parser_extras.h
index 7759eda..51e4eb8 100644
--- a/glsl_parser_extras.h
+++ b/glsl_parser_extras.h
@@ -59,6 +59,14 @@
 
    /** Loop or switch statement containing the current instructions. */
    class ir_instruction *loop_or_switch_nesting;
+
+   /**
+    * \name Enable bits for GLSL extensions
+    */
+   /*@{*/
+   unsigned ARB_draw_buffers_enable:1;
+   unsigned ARB_draw_buffers_warn:1;
+   /*@}*/
 };
 
 typedef struct YYLTYPE {