diff options
author | marha <marha@users.sourceforge.net> | 2013-11-21 08:43:25 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-11-21 08:43:25 +0100 |
commit | bb953a87489963f63e65c797a1f2837382ff7808 (patch) | |
tree | 458f44ffc1539fad170d96a414970a42b75d1190 /mesalib/src/mesa/program/program_parse.y | |
parent | 73db05c85f7a8cf2439f7c333ede6ff2dc4877d7 (diff) | |
download | vcxsrv-bb953a87489963f63e65c797a1f2837382ff7808.tar.gz vcxsrv-bb953a87489963f63e65c797a1f2837382ff7808.tar.bz2 vcxsrv-bb953a87489963f63e65c797a1f2837382ff7808.zip |
xserver mesa git update 21 nov 2013
xserver commit 6403cbb143c67872ca9c58e3116ae7942def0ae1
mesa commit b7c0b61782251c1dedb0b0fb0e6654af81249910
Diffstat (limited to 'mesalib/src/mesa/program/program_parse.y')
-rw-r--r-- | mesalib/src/mesa/program/program_parse.y | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/mesalib/src/mesa/program/program_parse.y b/mesalib/src/mesa/program/program_parse.y index 03c0a3dba..a76db4e86 100644 --- a/mesalib/src/mesa/program/program_parse.y +++ b/mesalib/src/mesa/program/program_parse.y @@ -25,7 +25,6 @@ #include <stdlib.h> #include <string.h> -#include "main/macros.h" #include "main/mtypes.h" #include "main/imports.h" #include "program/program.h" @@ -2560,12 +2559,6 @@ initialize_symbol_from_param(struct gl_program *prog, param_var->type = at_param; param_var->param_binding_type = PROGRAM_STATE_VAR; - /* Dynamically allocate LocalParams, since it's a large array to have - * statically in every gl_program otherwise. - */ - if (state_tokens[1] == STATE_LOCAL && !prog->LocalParams) - prog->LocalParams = calloc(MAX_PROGRAM_LOCAL_PARAMS, sizeof(float[4])); - /* If we are adding a STATE_ENV or STATE_LOCAL that has multiple elements, * we need to unroll it and call add_state_reference() for each row */ |