projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e291c0
)
VertexAttrib4fv wasn't being installed (4f was).
author
Keith Whitwell
<keith@tungstengraphics.com>
Mon, 6 Oct 2003 17:57:48 +0000
(17:57 +0000)
committer
Keith Whitwell
<keith@tungstengraphics.com>
Mon, 6 Oct 2003 17:57:48 +0000
(17:57 +0000)
src/mesa/main/vtxfmt.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/vtxfmt.c
b/src/mesa/main/vtxfmt.c
index d7b18e4c1cc9aba9feb6f747c7a2dbcb2de29500..4d3ca510b0c69aeb76262488904897be5a94d330 100644
(file)
--- 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;