diff options
author | Samuel Pitoiset <[email protected]> | 2017-05-31 15:41:30 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-07 11:03:56 +0200 |
commit | 63a60584d1077e3099c872d355ccda26d0d99c55 (patch) | |
tree | 24a2b28ff8a32c4214fa568caf7f38feb6f52095 /src/mesa/main/blit.h | |
parent | c231590f8d1e474c2c8e5bcf7a3956903b2b8ccc (diff) |
mesa: make _mesa_blit_framebuffer() static
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/blit.h')
-rw-r--r-- | src/mesa/main/blit.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/main/blit.h b/src/mesa/main/blit.h index 88dd4a9ec8d..1ca4f830287 100644 --- a/src/mesa/main/blit.h +++ b/src/mesa/main/blit.h @@ -34,14 +34,6 @@ _mesa_regions_overlap(int srcX0, int srcY0, int dstX0, int dstY0, int dstX1, int dstY1); -extern void -_mesa_blit_framebuffer(struct gl_context *ctx, - struct gl_framebuffer *readFb, - struct gl_framebuffer *drawFb, - GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, - GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, - GLbitfield mask, GLenum filter, const char *func); - extern void GLAPIENTRY _mesa_BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, |