Updated Performance Tips (markdown)

Hajime Hoshi 2017-08-24 01:20:06 +09:00
parent 204d7155b2
commit ed2376c601

@ -18,7 +18,7 @@ Ebiten records almost all draw functions in order to restore when context lost h
``` ```
A.DrawImage(B, op) // B is a render source A.DrawImage(B, op) // B is a render source
B.DrawImage(C, op) // tries to change B's pixels. Don't do that if possible. B.DrawImage(C, op) // tries to change B's pixels. Don't do this if possible.
``` ```
As well, cyclic drawing should also be avoided. As well, cyclic drawing should also be avoided.