Currently there is no way to make no context current w/gallium + osmesa.
The non-gallium version of osmesa does this if the context and buffer
passed to `OSMesaMakeCurrent` are both null. This small change makes it
so that this is also the case with the gallium version.
Cc: mesa-stable@lists.freedesktop.org
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
struct osmesa_buffer *osbuffer;
enum pipe_format color_format;
+ if (!osmesa && !buffer) {
+ stapi->make_current(stapi, NULL, NULL, NULL);
+ return GL_TRUE;
+ }
+
if (!osmesa || !buffer || width < 1 || height < 1) {
return GL_FALSE;
}