diff options
author | Brian Paul <[email protected]> | 2008-07-03 16:59:24 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-07-03 17:21:23 -0600 |
commit | dd3311aa89035aa2e624f54b6914cfbcf57b33d7 (patch) | |
tree | e79b7dc3aee7649bb83c134dac51d74568c7268e /src/mesa/vbo/vbo_exec_api.c | |
parent | 7366f3fc54be280969f3adef16ed67fddfe55e67 (diff) |
mesa: added _vbo_VertexAttrib4f()
Diffstat (limited to 'src/mesa/vbo/vbo_exec_api.c')
-rw-r--r-- | src/mesa/vbo/vbo_exec_api.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/vbo/vbo_exec_api.c b/src/mesa/vbo/vbo_exec_api.c index 1e2a08bc8e1..2c2e66dd0b7 100644 --- a/src/mesa/vbo/vbo_exec_api.c +++ b/src/mesa/vbo/vbo_exec_api.c @@ -795,3 +795,10 @@ _vbo_Materialfv(GLenum face, GLenum pname, const GLfloat *params) { vbo_Materialfv(face, pname, params); } + + +void +_vbo_VertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w) +{ + vbo_VertexAttrib4fARB(index, x, y, z, w); +} |