diff options
author | Samuel Pitoiset <[email protected]> | 2017-06-06 21:58:25 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-07 09:09:04 +0200 |
commit | ee38dfe9a5525375012d1c6681e7c39c15ac3049 (patch) | |
tree | 3dedc69f9c71991a8f90cdd9fb65b3d6e62648da | |
parent | 8614f31be2deb036f5bf6c36f95b457c5f737461 (diff) |
mesa: make _mesa_scissor_bounding_box() static
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
-rw-r--r-- | src/mesa/main/framebuffer.c | 10 | ||||
-rw-r--r-- | src/mesa/main/framebuffer.h | 4 |
2 files changed, 5 insertions, 9 deletions
diff --git a/src/mesa/main/framebuffer.c b/src/mesa/main/framebuffer.c index 5069d373948..993cd37137b 100644 --- a/src/mesa/main/framebuffer.c +++ b/src/mesa/main/framebuffer.c @@ -407,10 +407,10 @@ _mesa_intersect_scissor_bounding_box(const struct gl_context *ctx, * * \sa _mesa_clip_to_region */ -void -_mesa_scissor_bounding_box(const struct gl_context *ctx, - const struct gl_framebuffer *buffer, - unsigned idx, int *bbox) +static void +scissor_bounding_box(const struct gl_context *ctx, + const struct gl_framebuffer *buffer, + unsigned idx, int *bbox) { bbox[0] = 0; bbox[2] = 0; @@ -444,7 +444,7 @@ _mesa_update_draw_buffer_bounds(struct gl_context *ctx, } /* Default to the first scissor as that's always valid */ - _mesa_scissor_bounding_box(ctx, buffer, 0, bbox); + scissor_bounding_box(ctx, buffer, 0, bbox); buffer->_Xmin = bbox[0]; buffer->_Ymin = bbox[2]; buffer->_Xmax = bbox[1]; diff --git a/src/mesa/main/framebuffer.h b/src/mesa/main/framebuffer.h index ee0690b068b..bc6e7bc31ac 100644 --- a/src/mesa/main/framebuffer.h +++ b/src/mesa/main/framebuffer.h @@ -72,10 +72,6 @@ extern void _mesa_resizebuffers( struct gl_context *ctx ); extern void -_mesa_scissor_bounding_box(const struct gl_context *ctx, - const struct gl_framebuffer *buffer, - unsigned idx, int *bbox); -extern void _mesa_intersect_scissor_bounding_box(const struct gl_context *ctx, unsigned idx, int *bbox); |