From a4fc8035f154c4c24b263f629308a0a659ce4563 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Mon, 6 Oct 2003 17:57:48 +0000 Subject: VertexAttrib4fv wasn't being installed (4f was). --- src/mesa/main/vtxfmt.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/mesa/main/vtxfmt.c') 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; -- cgit v1.2.3