ComposeTarget is a BasicTarget capable of Porter-Duff composition.
| 4 | |
| 5 | // ComposeTarget is a BasicTarget capable of Porter-Duff composition. |
| 6 | type ComposeTarget interface { |
| 7 | BasicTarget |
| 8 | |
| 9 | // SetComposeMethod sets a Porter-Duff composition method to be used. |
| 10 | SetComposeMethod(ComposeMethod) |
| 11 | } |
| 12 | |
| 13 | // ComposeMethod is a Porter-Duff composition method. |
| 14 | type ComposeMethod int |