summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-08-30 14:24:55 -0600
committerBrian Paul <brianp@vmware.com>2011-08-31 12:57:38 -0600
commit87679e2ea10836d89f47a37b8e94cce0d319622e (patch)
tree62d3d97b4a800ef4c6dd5fa9fecd841832771f96
parente26e9f77e761775592204edb53b6028eef0c1f11 (diff)
mesa: bump max program local params, max uniforms limit
Some driver support more than 1024. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
-rw-r--r--src/mesa/main/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h
index fffb1a7d2e..91aef90b78 100644
--- a/src/mesa/main/config.h
+++ b/src/mesa/main/config.h
@@ -203,8 +203,8 @@
* per-program parameters.
*/
/*@{*/
-#define MAX_PROGRAM_LOCAL_PARAMS 1024
-#define MAX_UNIFORMS 1024
+#define MAX_PROGRAM_LOCAL_PARAMS 4096
+#define MAX_UNIFORMS 4096
/*@}*/
/**