From: Brian Paul Date: Tue, 30 Aug 2011 20:24:55 +0000 (-0600) Subject: mesa: bump max program local params, max uniforms limit X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=87679e2ea10836d89f47a37b8e94cce0d319622e;p=mesa.git mesa: bump max program local params, max uniforms limit Some driver support more than 1024. Reviewed-by: Ian Romanick --- diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index fffb1a7d2ec..91aef90b787 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 /*@}*/ /**