diff options
author | Brian <[email protected]> | 2007-03-01 09:40:21 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-03-01 09:40:21 -0700 |
commit | a8ba888a351ceb4242fa334f3c41ef76d7f25bc8 (patch) | |
tree | 7087f6b7c616964262371ca3ad6aa5d06baaf590 /src/mesa/main/fbobject.c | |
parent | 9fbb2e9e76aabc73148c464ce8fd6980a2c1d3f5 (diff) |
move oldFb decl into tighter scopes
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r-- | src/mesa/main/fbobject.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index cf8de1e0cbe..a99ff9dc97e 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -938,7 +938,7 @@ check_end_texture_render(GLcontext *ctx, struct gl_framebuffer *fb) void GLAPIENTRY _mesa_BindFramebufferEXT(GLenum target, GLuint framebuffer) { - struct gl_framebuffer *newFb, *oldFb; + struct gl_framebuffer *newFb; GLboolean bindReadBuf, bindDrawBuf; GET_CURRENT_CONTEXT(ctx); @@ -1020,7 +1020,7 @@ _mesa_BindFramebufferEXT(GLenum target, GLuint framebuffer) */ if (bindReadBuf) { - oldFb = ctx->ReadBuffer; + struct gl_framebuffer *oldFb = ctx->ReadBuffer; if (oldFb && oldFb->Name != 0) { _mesa_dereference_framebuffer(&oldFb); } @@ -1028,7 +1028,7 @@ _mesa_BindFramebufferEXT(GLenum target, GLuint framebuffer) } if (bindDrawBuf) { - oldFb = ctx->DrawBuffer; + struct gl_framebuffer *oldFb = ctx->DrawBuffer; if (oldFb && oldFb->Name != 0) { /* check if old FB had any texture attachments */ check_end_texture_render(ctx, oldFb); |