diff options
author | Brian Paul <[email protected]> | 2016-02-23 13:24:11 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-02-24 08:31:28 -0700 |
commit | c8fdb42c9138a1b510b4cbf768832a09f6398f96 (patch) | |
tree | eb232a43349aefe0676a159a69ad920a5685ebcf /src/mesa/main/context.c | |
parent | 363019e17a4d5b967ca973d2927a6d2d7a67514f (diff) |
mesa: use gl_buffer_index in a few places
Reviewed-by: Rob Clark <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 9388a1ca51d..a6d89394b39 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1601,7 +1601,6 @@ static void handle_first_current(struct gl_context *ctx) { GLenum buffer; - GLint bufferIndex; if (ctx->Version == 0) { /* probably in the process of tearing down the context */ @@ -1627,6 +1626,7 @@ handle_first_current(struct gl_context *ctx) } if (ctx->ReadBuffer != _mesa_get_incomplete_framebuffer()) { + gl_buffer_index bufferIndex; if (ctx->ReadBuffer->Visual.doubleBufferMode) { buffer = GL_BACK; bufferIndex = BUFFER_BACK_LEFT; |