diff options
author | Brian Paul <[email protected]> | 2014-02-01 08:58:43 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-02-02 06:52:37 -0700 |
commit | bfcb9bb20451aa7c74d8769ae043fb11503e8453 (patch) | |
tree | 7431e030440342f52cacfd5c33ebafa389678e8e /src/mesa/main/fbobject.h | |
parent | 20fedfd80aa2402d2033215c538894c9f81e422a (diff) |
mesa: move glBlitFramebuffer code into new blit.c file
Just for better organization.
v2: update gl_genexec.py too (not api_exec.c)
Acked-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/fbobject.h')
-rw-r--r-- | src/mesa/main/fbobject.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/main/fbobject.h b/src/mesa/main/fbobject.h index ab138cfff84..1f5aa34ef74 100644 --- a/src/mesa/main/fbobject.h +++ b/src/mesa/main/fbobject.h @@ -207,11 +207,6 @@ _mesa_GenerateMipmap(GLenum target); extern void GLAPIENTRY -_mesa_BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, - GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, - GLbitfield mask, GLenum filter); - -extern void GLAPIENTRY _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); |