From 7bf69751d708cdd2f7c3b05d2a8b7e4a4239ab07 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Wed, 14 Feb 2018 11:08:57 +0900 Subject: [PATCH] Updated Performance Tips (markdown) --- Performance-Tips.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Performance-Tips.md b/Performance-Tips.md index f139ff8..0afaffe 100644 --- a/Performance-Tips.md +++ b/Performance-Tips.md @@ -9,6 +9,7 @@ One drawing function like `DrawImage` or `Fill` is usually treated as one (inter * All the render sources are same (`B` in `A.DrawImage(B, op)`) * All the color matrices are same * All the composite modes are same +* All the filter values are same examples/sprites is a good example to draw > 10000 sprites with one draw command.