diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2012-01-17 16:24:05 -0800 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2012-01-19 09:34:01 -0800 |
commit | f0ea46790f8f4df9a39b0cfab5c5f1bf02c136fc (patch) | |
tree | 2b92815daaf1c857fb80c490055562faed6090ed /src/mesa/state_tracker/st_cb_bufferobjects.c | |
parent | 75f37ddba7e5a297390299be0dab8377ea40f5c8 (diff) | |
download | external_mesa3d-f0ea46790f8f4df9a39b0cfab5c5f1bf02c136fc.zip external_mesa3d-f0ea46790f8f4df9a39b0cfab5c5f1bf02c136fc.tar.gz external_mesa3d-f0ea46790f8f4df9a39b0cfab5c5f1bf02c136fc.tar.bz2 |
mesa: Set default access flags based on the run-time API
The default access flags for OpenGL ES (via GL_OES_map_buffer) and
desktop OpenGL are different. The code previously tried to handle
this, but the decision was made at compile time. Since the same
driver binary can be used for both OpenGL ES and desktop OpenGL, the
decision must be made at run-time.
This should fix bug #44433. It appears that the test case does
various map and unmap operations and inspects the state of the buffer
object around each. When it sees that GL_BUFFER_ACCESS does not match
its expectations, it fails.
NOTE: This is a candidate for release branches.
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=44433
Diffstat (limited to 'src/mesa/state_tracker/st_cb_bufferobjects.c')
-rw-r--r-- | src/mesa/state_tracker/st_cb_bufferobjects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_cb_bufferobjects.c b/src/mesa/state_tracker/st_cb_bufferobjects.c index 6d95d57..6534a43 100644 --- a/src/mesa/state_tracker/st_cb_bufferobjects.c +++ b/src/mesa/state_tracker/st_cb_bufferobjects.c @@ -58,7 +58,7 @@ st_bufferobj_alloc(struct gl_context *ctx, GLuint name, GLenum target) if (!st_obj) return NULL; - _mesa_initialize_buffer_object(&st_obj->Base, name, target); + _mesa_initialize_buffer_object(ctx, &st_obj->Base, name, target); return &st_obj->Base; } |