diff options
author | Marek Olšák <[email protected]> | 2015-02-10 01:35:23 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-02-24 12:22:07 +0000 |
commit | 3a2043fddda722999a6d5fa5dbff7234c51c8df1 (patch) | |
tree | fda7f7e78fc3cc99c703139e105c8e9cf7b58877 | |
parent | 39d823fa583dadb11edd87ab1362a8b62cc0abf3 (diff) |
mesa: fix AtomicBuffer typo in _mesa_DeleteBuffers
Cc: 10.5 10.4 10.3 <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
(cherry picked from commit e8625a29fe0942af2876f0684b06c6ed01939227)
-rw-r--r-- | src/mesa/main/bufferobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index 0c1ce984f4a..0c23b429e5b 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -1226,7 +1226,7 @@ _mesa_DeleteBuffers(GLsizei n, const GLuint *ids) } } - if (ctx->UniformBuffer == bufObj) { + if (ctx->AtomicBuffer == bufObj) { _mesa_BindBuffer( GL_ATOMIC_COUNTER_BUFFER, 0 ); } |