Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 845 Bytes

Performace_Tips.md

File metadata and controls

24 lines (16 loc) · 845 Bytes

Game Engine Performance

  1. "More computing sins are committed in the name of efficiency (without necessarily achieving it) than for any other single reason - including blind stupidity." --- William Wulf
  2. "On the other hand, we cannot ignore efficiency." --- Jon Bentley

C++ code optimization

  1. C++ Optimization Strategies and Techniques
  2. Tips for Optimizing C/C++ Code

Render Performance

  1. Dos and donts
  2. Performance

Coding tips

  1. To replace the name of a namespace, the easy way:
grep -rl "realEngine" . | xargs sed -i 's/realEngine/cruelEngine/g'