summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/bufferobj.h
diff options
context:
space:
mode:
authorLaura Ekstrand <[email protected]>2014-12-18 17:10:06 -0800
committerLaura Ekstrand <[email protected]>2015-03-17 10:18:33 -0700
commit2cf48c37c1e2946f7c0648e0a5927a90209f59a4 (patch)
tree63f1dc3f04ec76fc78c064082b84200396d93058 /src/mesa/main/bufferobj.h
parent44ecf0793d872e771edc448436f7a2fd7c3390f5 (diff)
main: Add entry point for CreateBuffers.
Reviewed-by: Martin Peres <[email protected]>
Diffstat (limited to 'src/mesa/main/bufferobj.h')
-rw-r--r--src/mesa/main/bufferobj.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/bufferobj.h b/src/mesa/main/bufferobj.h
index 8e53bfd979e..48d253b549c 100644
--- a/src/mesa/main/bufferobj.h
+++ b/src/mesa/main/bufferobj.h
@@ -150,7 +150,10 @@ void GLAPIENTRY
_mesa_DeleteBuffers(GLsizei n, const GLuint * buffer);
void GLAPIENTRY
-_mesa_GenBuffers(GLsizei n, GLuint * buffer);
+_mesa_GenBuffers(GLsizei n, GLuint *buffers);
+
+void GLAPIENTRY
+_mesa_CreateBuffers(GLsizei n, GLuint *buffers);
GLboolean GLAPIENTRY
_mesa_IsBuffer(GLuint buffer);