VertexAttrib4fv wasn't being installed (4f was).

This commit is contained in:
Keith Whitwell 2003-10-06 17:57:48 +00:00
parent 3e291c01ea
commit a4fc8035f1

View 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;