So, I followed a lot of Casey work and I really liked the separation that it makes for the game, t…
Indeed. See this open issue: I haven't found an existing solution for go-to-definition that works…
I expect clangd or any similar tools will not work well on Handmade Hero source code because its c…
Hey all, hope you're having a good day. I'm competely new to c programming and I want to follow al…
As someone who is just beginning a basic 3D software rendering project, this is inspiring. Those a…
Another 3D software renderer that started from Casey's Handmade Hero project (3 years of daily wor…
If what you want is to start 4coder with a single panel, you'll need to modify and compile the cus…
I'm totally new to 4coder editor (just found it and have used it just couple of hours). One questi…
That's what I did initially. A better way of doing this is using GetInterfaceMap. That way, you ca…
Steve —
Possibly you could do some set operations to remove those found in the base class? Though that may…
I see. Thanks Simon. I forgot that you usually turn off the module name and address columns which …
If you don't have debug symbols, the call stack and assembly panels are empty. The call stack cont…
I built the following Intel sample which uses AVX-512: RemedyBG halted at the first AVX-512 instr…
For future reference, davidc was kind enough to send a repro for this. The problem is that remedyb…
I observe the same behavior when I don't generate debug symbols (pdb file). The call stack is also…
It is valid to have NULL owner window. Nothing bad will happen. OP's problem was solved on Discord…
This might be related to a previous post () I am trying to debug an AVX-512 exe which crashes, and…
Yeah, I know all derived classes implement their parent's interfaces. Afaik, Visual Studio uses re…
However, when done in moderation, it can help to structure things better. So does writing C code i…
Why do you want that? It kind of does make any sense. If any of parent classes implements interfac…
But GetInterfaces returns all a class's interfaces, so A, B, and C will all return I1. What I want…
theo —
Ik stumbled upon the handmade hero thing some time ago. I have to say I do admire him for it. It d…
A C# reflection question: Is there any way for me to only get "declared" interfaces of a class?
nate —
Hi all, I am trying to write my own 2D physics code from scratch using Christer Ericson's book. I'…
I think I've got the zip file with code and other stuff. I you need it I could upload them somewh…
It looks like the it was deleted. Does anybody has these downloaded?
Ah, good to know. Thanks.
It's a common request. This thread discuss some ideas.
On windows i want to be able to load a level for my game trough the a explorer window. I use the t…