diff options
author | Brian Paul <[email protected]> | 2006-03-01 01:57:30 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-03-01 01:57:30 +0000 |
commit | 1eca891dbe39a4aad7a6ed267ce7cd55589073fe (patch) | |
tree | 4112a17ce0bc6831ed7ba20716364bbbad18150a /src/mesa/swrast/swrast.h | |
parent | a23109760923fd57fa6a652d85d245fef00bfabf (diff) |
_swrast_blit_framebuffer() function
Diffstat (limited to 'src/mesa/swrast/swrast.h')
-rw-r--r-- | src/mesa/swrast/swrast.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/swrast/swrast.h b/src/mesa/swrast/swrast.h index 9e63db02482..9dc3b1daf42 100644 --- a/src/mesa/swrast/swrast.h +++ b/src/mesa/swrast/swrast.h @@ -123,6 +123,12 @@ _swrast_ReadPixels( GLcontext *ctx, GLvoid *pixels ); extern void +_swrast_blit_framebuffer(GLcontext *ctx, + GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, + GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, + GLbitfield mask, GLenum filter); + +extern void _swrast_Clear( GLcontext *ctx, GLbitfield mask, GLboolean all, GLint x, GLint y, GLint width, GLint height ); |