The PDB world is small Stefan here we meet again :)) Btw I added a PR for a small typo I found :P
I open-sourced my PDB reader that is used in Live++: Depending on what information you need, ther…
As an option you can consider using clang instead of gcc. Even if you target mingw environment, cl…
I wrote my own PDB parser based on the information that Microsoft released here: The plan is to s…
Hey there, I was mostly curious on how you parsed the PDB files because I am reading some doc onli…
Hi, I've been trying to code a video game called Galaga using C# and the Raylib_cs library, but I …
I'm about to release my first video game using the lessons I've learned from Handmade Hero just a …
Is there a reason you're running it in WSL2? How about compiling native executable and running jus…
I'm experiencing a version of this (using 0.3.9.6.): Sometimes when setting a breakpoint, some oth…
Hello all, I tried installing and playing with raylib but here is my issue: w2fryao1ew5c1.webp Th…
It allows the language to be easily parsable. The classic problem in a C-like grammar is that it i…
I'll keep an eye out for this. Thanks for the heads up!
RemedyBG 0.3.9.6 is now available for download with the following changes: Added configurable symb…
Hi, Need to be able to debug into our process tree. So equivalent functionality to Visual Studio D…
I do not exactly know when this happens, but sometimes there are weird breakpoints that are automa…
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,…
Maybe you also need to flip the image you get from stb image ?
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 …
Guard Security would be my best guess on what it means. From here:
What does the gs stand for? It appears in these files and the flag.
I have not looked into details how they work, I don't know. But you can read up on that yourself i…
Can you give me some overview on how these ___security_cookie, ___report_rangecheckfailure, etc fu…
Sure, you can implement all of them yourself. If you know what they need to do, then you can write…
I said __chkstk and friends, which include ___report_rangecheckfailure, ___security_cookie, and __…
__chkstk function is less than 100 bytes. There's no way it will give more than 5KB of code. test.…
Regarding the executable size, It would be interesting to see comparisons between how each CRT fea…
There are different lib files based on settings - debug vs release, static vs dynamic. See that li…