User profile: steve9164

User info
User name:steve9164
Old user name:Stephen Davies
History
Joined:
Number of posts:24
Latest posts:

Strange bug converting little endian to host endian
Thanks heaps, I totally skimmed over that.

Strange bug converting little endian to host endian
I am having a problem with a function I wrote to convert little endian byte order integers to host b...

Calling SDL functions from multiple threads via a linked list or queue
Thanks Disch. I will have a look into writing my game without threads and see how that works.

Calling SDL functions from multiple threads via a linked list or queue
What about std::atomic<T*>? http://gcc.gnu.org/wiki/Atomic/GCCMM/AtomicSync And the reason that my ...

Calling SDL functions from multiple threads via a linked list or queue
Can writes be reordered? I.e. In this example: [code] // Worker thread nodeList->next = nullptr; //...