summaryrefslogtreecommitdiff
path: root/src/mesa/main/vtxfmt.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2003-10-06 17:57:48 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2003-10-06 17:57:48 +0000
commita4fc8035f154c4c24b263f629308a0a659ce4563 (patch)
tree1ae582472aaf90ec4a9250c99661f924d97b756e /src/mesa/main/vtxfmt.c
parent3e291c01ea426247326e83bfd46a22d417e1fca7 (diff)
VertexAttrib4fv wasn't being installed (4f was).
Diffstat (limited to 'src/mesa/main/vtxfmt.c')
-rw-r--r--src/mesa/main/vtxfmt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/vtxfmt.c b/src/mesa/main/vtxfmt.c
index d7b18e4c1c..4d3ca510b0 100644
--- a/src/mesa/main/vtxfmt.c
+++ b/src/mesa/main/vtxfmt.c
@@ -128,6 +128,7 @@ static void install_vtxfmt( struct _glapi_table *tab, GLvertexformat *vfmt )
tab->Begin = vfmt->Begin;
tab->End = vfmt->End;
tab->VertexAttrib4fNV = vfmt->VertexAttrib4fNV;
+ tab->VertexAttrib4fvNV = vfmt->VertexAttrib4fvNV;
tab->Rectf = vfmt->Rectf;
tab->DrawArrays = vfmt->DrawArrays;
tab->DrawElements = vfmt->DrawElements;