Handmade Network»Feed
onelivesleft
This might be a my-workflow-vs-your-workflow thing; I generally run remedy either when the program…
»
Simon Anciaux
Version 0.6 changelogSwitched graphics API from OpenGL to DirectX 11.Added tabs instead of "mode b…
»
2bytes
I've done some tests:set a breakpoint;start the program;type a variable (Address) to show it in th…
»
neeraj9
In general RemedyBG works amazingly good, but sometimes I notice that it cannot access process mem…
»
x13pixels
I haven't implemented an x86 debugger so it would hard to provide an accurate level of effort for …
»
x13pixels
I'm not seeing the issue with the memory panel @2bytes. Are you able to reproduce this consistentl…
»
x13pixels
Not currently, no. I like the idea though!
»
NicknEma
I tried it and I get this message: "Failed to create D3D11 Device! Make sure you have Direct3D 11.…
»
Angelo Theodorou
I forgot to mention here that in December I published the Dev Update #20, with updates from August…
»
Simon Anciaux
I was intrigued and I looked why audioclient.h disabled the warning. As William said, you can use …
»
William
You can use #pragma warning to disable warnings for a specific section of code instead of changing…
»
Bits Please
When the level of warnings to be generated by the compiler is set to 4 (/W4), I'm getting multiple…
»
Simon Anciaux
You might want to put a description of what VES is on the project page. It's not clear to me.
»
Christoffer Lernö
Alongside the removal of goto, having adding an fn in front of function declarations seems superfl…
»
Deex
If you want to contact me to talk about VES comment under here. Download link:
»
Delicious Lines
Here is a simple example: Let us say we have got an array of integers and let us say we display it…
»
2bytes
Hi, I'm working with the 0.3.7.1 version at the moment - great program by the way. On newer versio…
»
Christoffer Lernö
Another month and another C3 0.5.x release (read the 0.5.4 announcement here), grab it here: https…
»
Mārtiņš Možeiko
For doubles you can do SSE1 way, with repeated add/sub's. Or you can unpack exponent & mantissa an…
»
longtran2904
I've been using SSE2 for my function based on your gist. How can I do the same thing for 64-bit in…
»
sam_windell
I did a little write up of something I've been working on. A solution to a shared-memory problem.
»
Mārtiņš Možeiko
It was either that part, of the other UB. I'm not saying that leaving other UB is fine. It just ha…
»
longtran2904
So how did you know commenting out the "probably UB" line would make it generate the correct code?…
»
Mārtiņš Možeiko
It affects everything. That comes after, that comes before. Related variable, unrelated variables.…
»
longtran2904
Huh, interesting. So UB affects not only that one line but also the code that comes after it. But …
»
Mārtiņš Možeiko
Once you have UB in code, you cannot rely any calculations. Comment out "This is probably UB" sect…
»
longtran2904
I've been playing around with the compiler-generated output. For some reason, ab_int is UB in GCC …
»
smilima
Where is the new guide?
»
Mārtiņš Možeiko
For some reason, this will convert 2.6f to 3f. Yes, you're right. It will round. I wrote it wrong.…
»
longtran2904
f = f + 0x1p23f - 0x1p23f; For some reason, this will convert 2.6f to 3f. Why do you check for 0x1…
»