SetComposeMethod sets a Porter-Duff composition method to be used in the following draws onto this Window.
(cmp pixel.ComposeMethod)
| 457 | // SetComposeMethod sets a Porter-Duff composition method to be used in the following draws onto |
| 458 | // this Window. |
| 459 | func (w *Window) SetComposeMethod(cmp pixel.ComposeMethod) { |
| 460 | w.canvas.SetComposeMethod(cmp) |
| 461 | } |
| 462 | |
| 463 | // SetSmooth sets whether the stretched Pictures drawn onto this Window should be drawn smooth or |
| 464 | // pixely. |
nothing calls this directly
no test coverage detected