mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
[915] Don't attempt our accelerated drawpixels if no color buffer is attached.
Otherwise, glDrawBuffer(GL_NONE); glDrawPixels() results in a segfault when we try to emit the color buffer state during setup.
This commit is contained in:
parent
19420e6c25
commit
eed5e6f40f
1 changed files with 3 additions and 2 deletions
|
|
@ -64,12 +64,13 @@ do_texture_drawpixels(GLcontext * ctx,
|
||||||
fprintf(stderr, "%s\n", __FUNCTION__);
|
fprintf(stderr, "%s\n", __FUNCTION__);
|
||||||
|
|
||||||
intelFlush(&intel->ctx);
|
intelFlush(&intel->ctx);
|
||||||
intel->vtbl.render_start(intel);
|
|
||||||
intel->vtbl.emit_state(intel);
|
|
||||||
|
|
||||||
if (!dst)
|
if (!dst)
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
|
|
||||||
|
intel->vtbl.render_start(intel);
|
||||||
|
intel->vtbl.emit_state(intel);
|
||||||
|
|
||||||
if (src) {
|
if (src) {
|
||||||
if (!_mesa_validate_pbo_access(2, unpack, width, height, 1,
|
if (!_mesa_validate_pbo_access(2, unpack, width, height, 1,
|
||||||
format, type, pixels)) {
|
format, type, pixels)) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue