diff options
author | Dave Airlie <[email protected]> | 2015-02-20 11:26:33 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2015-05-08 10:21:01 +1000 |
commit | 5a7f04925f60a0222c66de8e3e4e788a0a550d5b (patch) | |
tree | 88f7a9c46c610541e6f0b1bf2960d4d66a77157b /src/mesa/main/varray.c | |
parent | 731b7c49bb78d6d1be25f9010af0087146de0b48 (diff) |
mapi: add GL_ARB_vertex_attrib_64bit support
This just adds the glapi bits.
Reviewed-by: Ilia Mirkin <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/main/varray.c')
-rw-r--r-- | src/mesa/main/varray.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c index 42e7f89b264..69c70a870f7 100644 --- a/src/mesa/main/varray.c +++ b/src/mesa/main/varray.c @@ -699,7 +699,11 @@ _mesa_VertexAttribIPointer(GLuint index, GLint size, GLenum type, size, type, stride, normalized, integer, ptr); } - +void GLAPIENTRY +_mesa_VertexAttribLPointer(GLuint index, GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr) +{ +} void GLAPIENTRY _mesa_EnableVertexAttribArray(GLuint index) @@ -879,6 +883,10 @@ _mesa_GetVertexAttribdv(GLuint index, GLenum pname, GLdouble *params) } } +void GLAPIENTRY +_mesa_GetVertexAttribLdv(GLuint index, GLenum pname, GLdouble *params) +{ +} void GLAPIENTRY _mesa_GetVertexAttribiv(GLuint index, GLenum pname, GLint *params) |