I am new using the VisualStudio。I made a partical system to test in it。The frameRate is about 20fps, But the cpu CPU utility is very low。And i fount it seems just use one core to run this program。 How can i released the whole CPU power to render this?May it belong to a muti- thread problem?
hello,
your program is using one thread at a time.
You need to code multi-threaded app to optimize cpu usage
One simple way would be to use OpenMP when possible.
Thansks,Gallo
Thanks justadude.That’s helpful.I’ll give it a try~~