if you memcpy &msg2 to a 2 char array you will see {0xEF, 0xBE} That's how little endian works. Th…
As I understand it, network byte order is big-endian, while most consumer PCs are little-endian. S…
"very slow" depends on context. Sometimes it can be very slow, sometimes not. If you use them in s…
On day 178, someone asked Casey why did he consider using atomics for the timers instead of using …
Alexey —
Can't comment on 1) right now, but 2) looks exactly like an off-by-one error. Had plenty of those …
zub —
Oh thanks! I didn't think of that. That makes so much sense and it did work.
Casey sometimes leaves code in a bit broken state because he's working on some larger changes and …
zub —
Trying to compile the latest pull from handmadehero github and running into the below errors: ** V…
This article is also available on my blog. I spend a lot of time thinking about development tools.…
First of all, sorry for the late reply. Thank you for trying the program and for your thorough fee…
pinned_directories.png I have uploaded a new Itch.io release of SpookyGhost, my procedural animati…
Not sure what you mean by loading global guids. There are no guids in dll's. What are you loading?…
If I include the initguid.h file, do I still need to load the global GUIDs from the DLL with LoadPr…
lucy —
I was wondering if anyone tried to use Remedy with Rust and how the experience was. It should prob…
Yes, you can define INITGUID yourself. That's the only purpose of initguid.h header - you can open…
When I looked through the source code, I saw a lot of #ifdef for INITGUID and DEFINE_GUID. Can I j…
You cannot link to dxguid.lib dynamically. Why would you want that? It is a static library. You ju…
I'm currently trying to use d3d11 in c. I need to use IID_ globals which need the dxguid lib. Is t…
Thanks for the repro. I'll take a look.
There is one important thing missing from this. If application owns the clipboard data and then te…
I was just planning to implement that, so this will certainly be useful information.
clivi —
Hello, I was trying to implement a font rasterizer by following your guide and i found some bugs t…
Working with X11 can quickly become neck-beard inducing. Thank you for saving us all in this parti…
I've been struggling with this for some time, so when I finally figured it out, I thought it would…
Max —
When stepping into machine code that was generated at runtime the Disassembly window does not jump…
Yes that was it! With the ++ used two times in the V2 expression wronggrass1.png With the indices…
My gut feeling is that you are hitting the undefined behavior related to when a post increment get…
Hi Simon, On Day 81 the ground bitmaps were loaded and their X and Y coordinates were randomly gen…
I think I had read in the remedybg README that this is also possible in some way in remedy. I don'…