Advertisement

Latest thread Activity

I am writing a Software Development Kit, aka SDK, for a Platform that supports Distributed Computing.  The company will sell custom licenses for games, encrypt binaries (Executables and DLLs) and license out the Distributed Software Development Kit.  This will be aimed to be a high-perfor…

382 views
Advertisement

Key_C0de said:
Your thread dispatching depending on granularity of work is interesting. Your multiple threads for physics integrations seems overkill to me, but you may be working on a big game, even aaa quality.

An example of when that happens (not directly physics related - could be used there too)…

8,225 views

The problem that occures here is that the event loop is flooded with OS specific events that tells the Window that it's position has changed. If you are on Windows for example you will always stay in the

while(true)
{
    if(PeekMessage)
    {
        TranslateMessage;
        DispatchMessage;
    }…
7,040 views
Advertisement
Advertisement