diff options
author | Brian Paul <[email protected]> | 2009-09-21 14:07:35 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-21 14:25:39 -0600 |
commit | 44d260329efaea2bc844afa42fb1b4f882ab74fd (patch) | |
tree | 68f07a47c145b126d70b688f6c975c3fab4e502c /src/mesa/main/api_validate.h | |
parent | ff5535c5219047fc56f89c55ee44899d218dc234 (diff) |
mesa: make max_buffer_index() a non-static function
Diffstat (limited to 'src/mesa/main/api_validate.h')
-rw-r--r-- | src/mesa/main/api_validate.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/api_validate.h b/src/mesa/main/api_validate.h index 10f0c34e663..ff82a2966ca 100644 --- a/src/mesa/main/api_validate.h +++ b/src/mesa/main/api_validate.h @@ -30,6 +30,12 @@ #include "mtypes.h" + +extern GLuint +_mesa_max_buffer_index(GLcontext *ctx, GLuint count, GLenum type, + const void *indices, + struct gl_buffer_object *elementBuf); + extern GLboolean _mesa_validate_DrawArrays(GLcontext *ctx, GLenum mode, GLint start, GLsizei count); |