summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2009-07-22 15:27:31 -0700
committerIan Romanick <ian.d.romanick@intel.com>2009-07-22 15:27:31 -0700
commitc2ee82d6931ad180334b2fcb0028050d65cdd40d (patch)
treec900665eaa8afd98b5fb0c2bb83fbab7e74237e0 /src/mesa
parent44843c753301db0e8f8343745777479465f34ccc (diff)
parser: Set NumParameters
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/shader/program_parse.tab.c2
-rw-r--r--src/mesa/shader/program_parse.y2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/shader/program_parse.tab.c b/src/mesa/shader/program_parse.tab.c
index 8f8dae9223..40d48d597b 100644
--- a/src/mesa/shader/program_parse.tab.c
+++ b/src/mesa/shader/program_parse.tab.c
@@ -4959,6 +4959,8 @@ _mesa_parse_arb_program(GLcontext *ctx, GLenum target, const GLubyte *str,
}
state->prog->NumInstructions++;
+ state->prog->NumParameters = state->prog->Parameters->NumParameters;
+
/*
* Initialize native counts to logical counts. The device driver may
* change them if program is translated into a hardware program.
diff --git a/src/mesa/shader/program_parse.y b/src/mesa/shader/program_parse.y
index 6881562902..81b06ac13c 100644
--- a/src/mesa/shader/program_parse.y
+++ b/src/mesa/shader/program_parse.y
@@ -2175,6 +2175,8 @@ _mesa_parse_arb_program(GLcontext *ctx, GLenum target, const GLubyte *str,
}
state->prog->NumInstructions++;
+ state->prog->NumParameters = state->prog->Parameters->NumParameters;
+
/*
* Initialize native counts to logical counts. The device driver may
* change them if program is translated into a hardware program.