Works like a charm. I wouldn't mind a Handmade Dev Show podcast though. Let me subscribe on my pho…
Just a short update about the current state: The X11/GLX/POSIX/Linux implementation goes very well…
You can easily download only audio file from YouTube with youtube-dl. Find out YT url and then run…
Is there some way we could get ahold of audio files for listening to these interviews on the go? I…
Mór —
Casey calls his method Compression Oriented Programming. He explains it in Working on The Witness,…
Totally NP, if you prefer a 3,000 page pdf to working tested code, that's your choice. I totally …
It's cool even if it's never more than a hobby. You've learned something I'd guess < 1% of people …
IBM VGA8 is the exact same font I'm using. It's unbeatable at 96 DPI. It's unbeatable at 140 DPI. …
I believe there is nothing to optimize with SIMD in general HH engine code. It probably will come …
I'm starting to transition away from an OOP mindset into a Data-Oriented Mindset. I've been follow…
Mór —
I think your question is answered here:
Oh, sorry this is in Odin forum. I missed this part, I though we are talking about C :) ext_loader…
I've just done a fresh build of the latest HMH (as of day 431). It's running around 1 frame per s…
Neither me nor google know anything about an 'official' ext_loader.c, any link? No, then you jus…
Sure but the caller has to wait on that signal, not the system managing the threads. On Win32 thi…
Is there something wrong with official ext_loader.c which is autogenerated from spec? And isn't it…
You can get pixel order from Windows registry: I believe user can change this setting in "friendl…
Would like to give it a try, without reinventing the wheel, hence the question.
Thanks, I'll take a look at those videos.
From what I understand, sub-pixel hinting is usually not done when rendering text with OpenGL as t…
Hey, We haven't forgotten about tutorials. The wiki already has tutorials, and has recently been …
Hello! This is more of a "I'm not dead post". Just a couple updates. The engine re-write is in pro…
Double quotes are used for strings, single for chars. So if char* word = "a"; Then: word[0] == 'a'…
Yup. I was using double quotes. Didn't know single and double quotes mean different things in C++.…
If you mean line 3, then that's comparing a uint32 with a char (not const char*) since it's using …
Hi, I was looking into win32_handmade.cpp to see how Casey handles keypresses. I used the code bel…
You can suspend threads on Linux. You do that by raising signal. For example, mono garbage collect…
I changed the thread api to make it compatible with pthread. In addition posix threading is now f…
Shazan —
Any news on HMN tutorials Abner ? Being waiting for it for a long time.