Module: Mesa Branch: master Commit: 6c3768692e4edd7f61080239f34306be0d43bafd URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6c3768692e4edd7f61080239f34306be0d43bafd
Author: Timothy Arceri <[email protected]> Date: Thu May 4 13:14:27 2017 +1000 mesa: make _mesa_unmap_buffer() static Reviewed-by: Eric Anholt <[email protected]> --- src/mesa/main/bufferobj.c | 10 +++++----- src/mesa/main/bufferobj.h | 4 ---- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index d1726d6862..f6822c750d 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -2003,9 +2003,9 @@ _mesa_ClearNamedBufferSubData(GLuint buffer, GLenum internalformat, } -GLboolean -_mesa_unmap_buffer(struct gl_context *ctx, struct gl_buffer_object *bufObj, - const char *func) +static GLboolean +unmap_buffer(struct gl_context *ctx, struct gl_buffer_object *bufObj, + const char *func) { GLboolean status = GL_TRUE; ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); @@ -2071,7 +2071,7 @@ _mesa_UnmapBuffer(GLenum target) if (!bufObj) return GL_FALSE; - return _mesa_unmap_buffer(ctx, bufObj, "glUnmapBuffer"); + return unmap_buffer(ctx, bufObj, "glUnmapBuffer"); } GLboolean GLAPIENTRY @@ -2084,7 +2084,7 @@ _mesa_UnmapNamedBuffer(GLuint buffer) if (!bufObj) return GL_FALSE; - return _mesa_unmap_buffer(ctx, bufObj, "glUnmapNamedBuffer"); + return unmap_buffer(ctx, bufObj, "glUnmapNamedBuffer"); } diff --git a/src/mesa/main/bufferobj.h b/src/mesa/main/bufferobj.h index f95e31ab10..30e3105ff6 100644 --- a/src/mesa/main/bufferobj.h +++ b/src/mesa/main/bufferobj.h @@ -180,10 +180,6 @@ _mesa_clear_buffer_sub_data(struct gl_context *ctx, const GLvoid *data, const char *func, bool subdata); -extern GLboolean -_mesa_unmap_buffer(struct gl_context *ctx, struct gl_buffer_object *bufObj, - const char *func); - /* * API functions */ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
