Handmade Network»Feed
Mārtiņš Možeiko
As an option you can consider using clang instead of gcc. Even if you target mingw environment, cl…
»
x13pixels
I wrote my own PDB parser based on the information that Microsoft released here: The plan is to s…
»
Scr3amer
Hey there, I was mostly curious on how you parsed the PDB files because I am reading some doc onli…
»
MrSantuario
Hi, I've been trying to code a video game called Galaga using C# and the Raylib_cs library, but I …
»
Ted Bendixson
I'm about to release my first video game using the lessons I've learned from Handmade Hero just a …
»
Mārtiņš Možeiko
Is there a reason you're running it in WSL2? How about compiling native executable and running jus…
»
chennor
I'm experiencing a version of this (using 0.3.9.6.): Sometimes when setting a breakpoint, some oth…
»
Dertasz
Hello all, I tried installing and playing with raylib but here is my issue: w2fryao1ew5c1.webp Th…
»
Christoffer Lernö
It allows the language to be easily parsable. The classic problem in a C-like grammar is that it i…
»
»
x13pixels
I'll keep an eye out for this. Thanks for the heads up!
»
x13pixels
RemedyBG 0.3.9.6 is now available for download with the following changes: Added configurable symb…
»
steve-w
Hi, Need to be able to debug into our process tree. So equivalent functionality to Visual Studio D…
»
Delicious Lines
I do not exactly know when this happens, but sometimes there are weird breakpoints that are automa…
»
Mārtiņš Možeiko
Yes, that should have been solved by uploading the back texture to GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,…
»
da447m
Yes, that should have been solved by uploading the back texture to GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,…
»
Simon Anciaux
Maybe you also need to flip the image you get from stb image ?
»
Mārtiņš Možeiko
Be careful on how cubemap uses coordinate system. It is left handed. See here: So if your view ma…
»
da447m
This is to build the skybox texture. What happens is that the skybox textures are upside down and …
»
Mārtiņš Možeiko
Guard Security would be my best guess on what it means. From here:
»
longtran2904
What does the gs stand for? It appears in these files and the flag.
»
Mārtiņš Možeiko
I have not looked into details how they work, I don't know. But you can read up on that yourself i…
»
longtran2904
Can you give me some overview on how these ___security_cookie, ___report_rangecheckfailure, etc fu…
»
Mārtiņš Možeiko
Sure, you can implement all of them yourself. If you know what they need to do, then you can write…
»
longtran2904
I said __chkstk and friends, which include ___report_rangecheckfailure, ___security_cookie, and __…
»
Mārtiņš Možeiko
__chkstk function is less than 100 bytes. There's no way it will give more than 5KB of code. test.…
»
longtran2904
Regarding the executable size, It would be interesting to see comparisons between how each CRT fea…
»
Mārtiņš Možeiko
There are different lib files based on settings - debug vs release, static vs dynamic. See that li…
»
longtran2904
Whole CRT is typically one lib So it's not like math.h is in one lib file while stdio.h is in anot…
»
Mārtiņš Možeiko
Yes, that is how it will work. What do you mean by "couple libs"? Whole CRT is typically one lib (…
»