diff options
author | Ian Romanick <[email protected]> | 2010-09-27 14:29:12 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-09-27 15:23:13 -0700 |
commit | 4da5f1b7c52fb02a3b2baa846931c2dd5ee1b92e (patch) | |
tree | 18bbd3feb07646bac90c2b58a645dec0f5e248c3 /src/mesa/main/bufferobj.c | |
parent | a73c6ce67b272b71dc814b3384d8c1c99f6c75e3 (diff) |
mesa: Force GL_ARB_copy_buffer to always be enabled
As per discussions at XDS.
Diffstat (limited to 'src/mesa/main/bufferobj.c')
-rw-r--r-- | src/mesa/main/bufferobj.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index 4797f29b4dc..61d46b936b2 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -74,15 +74,9 @@ get_buffer_target(GLcontext *ctx, GLenum target) case GL_PIXEL_UNPACK_BUFFER_EXT: return &ctx->Unpack.BufferObj; case GL_COPY_READ_BUFFER: - if (ctx->Extensions.ARB_copy_buffer) { - return &ctx->CopyReadBuffer; - } - break; + return &ctx->CopyReadBuffer; case GL_COPY_WRITE_BUFFER: - if (ctx->Extensions.ARB_copy_buffer) { - return &ctx->CopyWriteBuffer; - } - break; + return &ctx->CopyWriteBuffer; #if FEATURE_EXT_transform_feedback case GL_TRANSFORM_FEEDBACK_BUFFER: if (ctx->Extensions.EXT_transform_feedback) { |