VertexAttrib4fv wasn't being installed (4f was).
authorKeith Whitwell <keith@tungstengraphics.com>
Mon, 6 Oct 2003 17:57:48 +0000 (17:57 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Mon, 6 Oct 2003 17:57:48 +0000 (17:57 +0000)
src/mesa/main/vtxfmt.c

index d7b18e4c1cc9aba9feb6f747c7a2dbcb2de29500..4d3ca510b0c69aeb76262488904897be5a94d330 100644 (file)
@@ -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;