commit 88a2e469cac10f7cb5e806b5d393d53235d27f4a parent ee347c1eba9eda1686b89316ea13a58c758b454f Author: Michael Savage <mikejsavage@gmail.com> Date: Sun Jan 17 18:01:44 +0000 Add some TODOs Diffstat:
benchmark.cc | | | 1 | + |
game.h | | | 3 | +++ |
diff --git a/benchmark.cc b/benchmark.cc @@ -11,6 +11,7 @@ struct Timer { const char * fn; const char * file; int line; + // TODO: use Stats volatile u64 total_clocks; volatile u64 num_calls; }; diff --git a/game.h b/game.h @@ -7,6 +7,9 @@ // general maths functions like clamp/rng - medium // bounded arithmetic classes? - easy/medium // would be used in terrain manager +// sentinels in memoryarena to detect stack smashing +// add a leaky keyword to denote functions that can leak memarena pushes +// static anaylsis opportunity // // platform // platform specific mutexes - easy