diff options
author | Brian Paul <[email protected]> | 2010-01-01 17:50:02 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-02 10:32:37 -0700 |
commit | 1fbc71937f7da1339c4a456b0bac48881b7e2b7c (patch) | |
tree | c7fbc01449a03cd3f0bb9d457535d11fa2d984f4 /src/mesa/main/bufferobj.h | |
parent | 52eb3e4235cc661ab9626a704c555a5f096c628a (diff) |
mesa: added _mesa_GetBufferParameteri64v()
This is a new function in GL 3.2. No dispatch for this function yet.
Diffstat (limited to 'src/mesa/main/bufferobj.h')
-rw-r--r-- | src/mesa/main/bufferobj.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/bufferobj.h b/src/mesa/main/bufferobj.h index 9f732ec0c07..2931962ac08 100644 --- a/src/mesa/main/bufferobj.h +++ b/src/mesa/main/bufferobj.h @@ -155,6 +155,9 @@ extern void GLAPIENTRY _mesa_GetBufferParameterivARB(GLenum target, GLenum pname, GLint *params); extern void GLAPIENTRY +_mesa_GetBufferParameteri64v(GLenum target, GLenum pname, GLint64 *params); + +extern void GLAPIENTRY _mesa_GetBufferPointervARB(GLenum target, GLenum pname, GLvoid **params); extern void GLAPIENTRY |