summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-08-14 12:58:21 -0600
committerBrian Paul <brianp@vmware.com>2009-08-14 12:58:21 -0600
commit71b1610941f9bfefa01d827fd19cc2368e6cdae3 (patch)
treec55ae412c4f6c3e5d983ed6bdc5fc1c3cdd43743 /src/mesa/main/mtypes.h
parent12199ed96ca0dd2307e9893c58300623cfa6c0ee (diff)
mesa: append uniform values to the log file the first time we use a shader
This info is essential to using/debugging a shader outside of its normal application.
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 6a60ad1cee..41172788ef 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -2037,6 +2037,7 @@ struct gl_shader_program
struct gl_program_parameter_list *Varying;
GLboolean LinkStatus; /**< GL_LINK_STATUS */
GLboolean Validated;
+ GLboolean _Used; /**< Ever used for drawing? */
GLchar *InfoLog;
};