Since it works with dual core for me iam still looking for more speedup, so i took a look at the compiler flags.
I got about additional 15fps by adding these flags
-fomit-frame-pointer -O3 -march=i686
to the compiler flags array in SConstruct
be careful about -march=i686 , it works only on processors with i686 architecture, you have too look for the keyword of your cpu architecture.
Have Fun!
I got about additional 15fps by adding these flags
-fomit-frame-pointer -O3 -march=i686
to the compiler flags array in SConstruct
be careful about -march=i686 , it works only on processors with i686 architecture, you have too look for the keyword of your cpu architecture.
Have Fun!
