From f025f6ea4ef9cfea9748740bfa461d9d5ea37e63 Mon Sep 17 00:00:00 2001 From: Paul Pacheco Date: Tue, 13 Oct 2020 13:07:09 -0500 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3a846defa..1f1434de4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -113,6 +113,7 @@ Micro-optimizations try to improve the performance of an application by replacin * replace `Vector3.Distance(a,b) < K` with `Vector3.SqrMagnitude(b - a) < K * K` * convert a class to struct * manually inlining small functions +* rewriting a function in native code Macro-optimizations try to improve the performance of an application by changing the algorithm. Some examples include: * Serialize a message once O(1), instead of for every single client O(n)