Personally, I don't think anyone should make a 3D game before they have made a good 2D game. Pret…
Yes, I said this on Handmade Hero explicitly: most allocation schemes can be completely handled by…
I'm pretty much talking about C++ in either OO-style or C-style. ABI shouldn't matter too much as …
I want to say Great Job, Casey, it is so surprising how compelling viewing it is to watch you code…
people —
@mmozeiko: so the heap is a c runtime library abstraction that gets it's memory from the OS using …
I've asked questions here before and found answers to them in the day that followed, but let's see…
Ooh neat, I didn't know they offered a separate bundle.
@mmozeiko: Using glob simplified the a lot. It even eliminated the need to loop over all hha file…
Milton is a paint package with infinite Zoom. It's basically Mischief, but I swear I started befor…
This warning is normal. It happens because there is /O2 in build.bat. Look here:
If we are talking about C then there are no move constructors. You simply pass object by address: …
@people: allocating memory with mmap is not called allocating on heap. Allocating on heap happens …
@mmozeiko: I will take a look at glob, thank you. And thank you @people. Now I am feeling less bad…
I appreciate all your responses. Perhaps option #1 is something I should reconsider. Offering API …
This is a very complex subject with a lot of things to pay attention to, but two things I would me…
In addition to what mmozeiko wrote: I prefer to point the API to allocation/deallocation functions…
robby —
this leads me to this (with /Wv:18): Thanks!
I do not have VS3015 installed (yet). But I suggest you replace fabs with fabsf in line 64 of hand…
robby —
Hi, when compiling with latest VS2015 (i installed it since i installed a new W7 because my old in…
people —
jeez, it would have been nice to know about fnmatch or glob. I couldn't find something to match a …
Does anybody have suggestions to make of GetAllFilesOfTypeBegin and OpenNextFile cleaner? Right n…
Gradle rubs ndk in his compilendk phase, but he doesn't use the mk files and instead generate them…
Orso's loop is the cleanest. There's no redundancy, and it's easy-to-understand. It's hard to co…
I prefer API to delegate memory management to me. Because then I can control where objects will li…
At the very least, don't start anything of your own before around episode 25. That's where you've…
Actually you don't need to install Xcode app to get compiler on OSX. You can get clang compiler an…
If you're just looking to learn without the clutter of Xcode, it's possible to follow the SDL2 "Ha…
I posted a rather poorly-worded question on today's episode about a tradeoff between persistent da…