diff options
author | Brian Paul <[email protected]> | 2006-03-25 22:14:09 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-03-25 22:14:09 +0000 |
commit | 7fb177c367cc8f522dd1dced1e80908ee51befd4 (patch) | |
tree | 47cffd030eab1824d94a16b46c4a2c96867375ac /src/mesa/main/dd.h | |
parent | d65cda4ce3173e4e57752eb99ba8b413c8b7db24 (diff) |
Shorten ctx->Driver.RenderbufferTexture to ctx->Driver.RenderTexture since
calls to it no longer directly correspond to glRenderbufferTextureEXT.
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index bc22b8dbc2f..4f1a962731d 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -807,9 +807,9 @@ struct dd_function_table { struct gl_framebuffer *fb, GLenum attachment, struct gl_renderbuffer *rb); - void (*RenderbufferTexture)(GLcontext *ctx, - struct gl_framebuffer *fb, - struct gl_renderbuffer_attachment *att); + void (*RenderTexture)(GLcontext *ctx, + struct gl_framebuffer *fb, + struct gl_renderbuffer_attachment *att); void (*FinishRenderTexture)(GLcontext *ctx, struct gl_renderbuffer_attachment *att); /*@}*/ |