projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e26e9f7
)
mesa: bump max program local params, max uniforms limit
author
Brian Paul
<brianp@vmware.com>
Tue, 30 Aug 2011 20:24:55 +0000
(14:24 -0600)
committer
Brian Paul
<brianp@vmware.com>
Wed, 31 Aug 2011 18:57:38 +0000
(12:57 -0600)
Some driver support more than 1024.
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/main/config.h
patch
|
blob
|
history
diff --git
a/src/mesa/main/config.h
b/src/mesa/main/config.h
index fffb1a7d2ececba81d37aeaf4a22d30963b75fd5..91aef90b7878736ccc703063bd2222d03f5eae75 100644
(file)
--- 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
/*@}*/
/**