diff options
author | Brian Paul <[email protected]> | 2005-02-24 05:47:06 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-02-24 05:47:06 +0000 |
commit | 2c6f911e10761c0946261d494bf149b19072821d (patch) | |
tree | 5415fdbb47c7badc1f9321e59d1a6c69e3db081d /src/mesa/main/dd.h | |
parent | 7b7d00ca62d18c71cd3a14a81f5dc12e73248757 (diff) |
More GL_EXT_framebuffer_object: rename some things, added device driver hooks.
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index def550109cb..312631a60aa 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -751,7 +751,7 @@ struct dd_function_table { /** - * \name Vertex buffer object functions + * \name Vertex/pixel buffer object functions */ #if FEATURE_ARB_vertex_buffer_object /*@{*/ @@ -784,6 +784,17 @@ struct dd_function_table { #endif /** + * \name Functions for GL_EXT_framebuffer_object + */ +#if FEATURE_EXT_framebuffer_object + /*@{*/ + struct gl_framebuffer * (*NewFramebuffer)(GLcontext *ctx, GLuint name); + struct gl_renderbuffer * (*NewRenderbuffer)(GLcontext *ctx, GLuint name); + /*@}*/ +#endif + + + /** * \name Support for multiple T&L engines */ /*@{*/ |