Strange bug converting little endian to host endianThanks heaps, I totally skimmed over that.
Strange bug converting little endian to host endianI 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 queueThanks 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 queueWhat 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 queueCan writes be reordered? I.e. In this example: [code] // Worker thread nodeList->next = nullptr; //...