diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-03-02 03:37:18 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-03-02 03:37:18 +0000 |
commit | c241d3b06a5c996cb8415a6ada23288621c1d254 (patch) | |
tree | bcdae36e663b3c5e9ad29029f4f729efd620d5e2 /src/mesa/swrast/swrast.h | |
parent | 93da673904d4c520d3fbd2210e53777bf1598ac6 (diff) |
implementation of _swrast_BlitFramebuffer()
Diffstat (limited to 'src/mesa/swrast/swrast.h')
-rw-r--r-- | src/mesa/swrast/swrast.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/swrast/swrast.h b/src/mesa/swrast/swrast.h index 9dc3b1daf4..dbc419b663 100644 --- a/src/mesa/swrast/swrast.h +++ b/src/mesa/swrast/swrast.h @@ -123,10 +123,10 @@ _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); +_swrast_BlitFramebuffer(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, |