diff options
author | Fredrik Höglund <[email protected]> | 2015-03-02 18:56:31 +0100 |
---|---|---|
committer | Fredrik Höglund <[email protected]> | 2015-05-08 15:31:03 +0200 |
commit | 1085c0112128e6bbb6cdc7ef3ae40e5e69499098 (patch) | |
tree | 4159ca981e9f3110f88980467064ca7d896f350c /src/mesa/main/arrayobj.h | |
parent | 0a895c379e649b64efd5c0978fb6252dabf9d285 (diff) |
mesa: Implement GetVertexArrayiv
Reviewed-by: Laura Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/main/arrayobj.h')
-rw-r--r-- | src/mesa/main/arrayobj.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/arrayobj.h b/src/mesa/main/arrayobj.h index 748eaf57a3a..6a4247f4aaa 100644 --- a/src/mesa/main/arrayobj.h +++ b/src/mesa/main/arrayobj.h @@ -102,4 +102,6 @@ GLboolean GLAPIENTRY _mesa_IsVertexArray( GLuint id ); void GLAPIENTRY _mesa_VertexArrayElementBuffer(GLuint vaobj, GLuint buffer); +void GLAPIENTRY _mesa_GetVertexArrayiv(GLuint vaobj, GLenum pname, GLint *param); + #endif /* ARRAYOBJ_H */ |