diff options
author | Tilman Sauerbeck <tilman@code-monkey.de> | 2006-09-20 20:26:37 +0200 |
---|---|---|
committer | Tilman Sauerbeck <tilman@code-monkey.de> | 2006-09-20 20:26:37 +0200 |
commit | 69cc0060d9516d5fba5fa46607a993f3ebfd5d89 (patch) | |
tree | e2d5167d13f4a04e38539e21000740f2ac52c106 /src | |
parent | 3d7c109c4864f021590c3bcf0f09685498225dde (diff) |
Fall back to software rendering for A8 add A8.
Diffstat (limited to 'src')
-rw-r--r-- | src/mga_exa.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mga_exa.c b/src/mga_exa.c index 6583b0c..25da5a1 100644 --- a/src/mga_exa.c +++ b/src/mga_exa.c @@ -400,6 +400,13 @@ mgaCheckComposite(int op, PicturePtr pSrcPict, PicturePtr pMaskPict, return FALSE; } + /* FIXME + * Doing this operation in hardware is broken atm :/ + */ + if (op == PictOpAdd && pSrcPict->format == PICT_a8 && + pDstPict->format == PICT_a8) + return FALSE; + return TRUE; } |