mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
radeon: fallback to sw ReadPixels if color logicop is enabled
Fixes glean/logicOp (regressed after introducing hw accelerated support for ReadPixels)
This commit is contained in:
parent
addedd091e
commit
3198cd4a65
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ do_blit_readpixels(GLcontext * ctx,
|
|||
return GL_FALSE;
|
||||
}
|
||||
|
||||
if (ctx->_ImageTransferState) {
|
||||
if (ctx->_ImageTransferState || ctx->Color._LogicOpEnabled) {
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue