mesa: increase max constants/uniforms to 256 (vec4 vectors)
authorBrian Paul <brianp@vmware.com>
Wed, 31 Dec 2008 00:00:06 +0000 (17:00 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 31 Dec 2008 00:00:06 +0000 (17:00 -0700)
src/mesa/main/config.h

index f1f12b8a0eda3c8bd63494b5e71f8857a0a5e35b..424ed60b571fec540e5e147c00d78f6c431af240 100644 (file)
 
 /** For any program target/extension */
 /*@{*/
-#define MAX_PROGRAM_LOCAL_PARAMS 128 /* KW: power of two */
+#define MAX_PROGRAM_LOCAL_PARAMS 256 /**< per-program constants (power of two) */
 #define MAX_PROGRAM_ENV_PARAMS 128
 #define MAX_PROGRAM_MATRICES 8
 #define MAX_PROGRAM_MATRIX_STACK_DEPTH 4
 #define MAX_PROGRAM_CALL_DEPTH 8
 #define MAX_PROGRAM_TEMPS 128
 #define MAX_PROGRAM_ADDRESS_REGS 2
-#define MAX_UNIFORMS 128   /**< number of float components */
+#define MAX_UNIFORMS 256   /**< number of vec4 uniforms */
 #define MAX_VARYING 8      /**< number of float[4] vectors */
 #define MAX_SAMPLERS 8
 #define MAX_PROGRAM_INPUTS 32