summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_vb_arbprogram.h
diff options
context:
space:
mode:
authorRoland Scheidegger <rscheidegger@gmx.ch>2006-09-07 13:26:44 +0000
committerRoland Scheidegger <rscheidegger@gmx.ch>2006-09-07 13:26:44 +0000
commit28e7219b96e647ac59f6a28abf6d2aea3779dc47 (patch)
treed1445dc3a30bf1371007670ae5f1a012be082fad /src/mesa/tnl/t_vb_arbprogram.h
parentd016d4e70f518a0221d63eddca482d56398ffe35 (diff)
only allow VERT_ATTRIB_MAX instead of _TNL_ATTRIB_MAX for inputs of vertex programs (fixes a segfault since the result of the shift is undefined otherwise, and it may happen that _TNL_ATTRIB_POINTSIZE will be tried to read, unlike all other attribs this however may be unitialized (might be a bug in itself)).
Diffstat (limited to 'src/mesa/tnl/t_vb_arbprogram.h')
-rw-r--r--src/mesa/tnl/t_vb_arbprogram.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vb_arbprogram.h b/src/mesa/tnl/t_vb_arbprogram.h
index 58efaa4fb9..6de8dca328 100644
--- a/src/mesa/tnl/t_vb_arbprogram.h
+++ b/src/mesa/tnl/t_vb_arbprogram.h
@@ -152,7 +152,7 @@ struct output {
struct arb_vp_machine {
GLfloat (*File[4])[4]; /* All values referencable from the program. */
- struct input input[_TNL_ATTRIB_MAX];
+ struct input input[VERT_ATTRIB_MAX];
GLuint nr_inputs;
struct output output[VERT_RESULT_MAX];