diff options
author | Brian Paul <[email protected]> | 2005-11-08 14:45:48 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-11-08 14:45:48 +0000 |
commit | 0bffb1192a599b11af11604ad590f6a50c054bf1 (patch) | |
tree | 5f9ecae6fbcdecbbeabaab66841d56a0ba128ae8 /src/mesa/main/fbobject.h | |
parent | 3e9c099088424c149931dcf546ae0a4d9ac2ae76 (diff) |
some initial work on upcoming GL_EXT_framebuffer_blit extension
Diffstat (limited to 'src/mesa/main/fbobject.h')
-rw-r--r-- | src/mesa/main/fbobject.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mesa/main/fbobject.h b/src/mesa/main/fbobject.h index 2c86ef93726..59214ce81d8 100644 --- a/src/mesa/main/fbobject.h +++ b/src/mesa/main/fbobject.h @@ -1,6 +1,6 @@ /* * Mesa 3-D graphics library - * Version: 6.3 + * Version: 6.5 * * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * @@ -111,4 +111,10 @@ extern void GLAPIENTRY _mesa_GenerateMipmapEXT(GLenum target); +extern void GLAPIENTRY +_mesa_BlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, + GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, + GLbitfield mask, GLenum filter); + + #endif /* FBOBJECT_H */ |