From: Josh V. <ho...@na...> - 2001-03-13 03:32:37
|
Gareth Hughes <ga...@va...> writes: > Compiling this with the code Josh sent takes around 70 msec on my 700MHz > PIII laptop. > > void codegen_test( void ) > { > printf( "hello, world!\n" ); > } > > That's a long time at 60fps... I would think you would keep a cache of the stuff that you've compiled to avoid re-compiling every time you want to call the routine. So you're really looking at a one time start up cost. Is there something where the code would change on every single frame? Josh |