We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
Handmade Network»Feed
Stefan Koch
Alright. I ran into problems I have to hack windows support for cling together. It should not be …
»
zenmumbler
Hey, thanks for converting it. I've added a comment on my version linking to yours. I'll post my …
»
Filip
Awesome! I took the liberty to convert to pure c99 for people like myself that don't use c++ much…
»
matra
What's the point in using different function on dev machine if both perform the same function? Is…
»
Stefan Koch
1 2 3 4 5 6 7 8 9 10#define SWAP(T,A,B) {T _tmp = A; A=B; _tmp=A;} //T is the Type A and…
»
Mārtiņš Možeiko
@ryanries: __rdtsc works reliably on SandyBridge and up (also on newer AMD cpus). See here: https…
»
Mārtiņš Možeiko
Not sure why you use winegcc to compile on Linux. You should install mingw-w64-gcc package. MinG…
»
Casey Muratori
__rdtsc is very important and you definitely want to use it _for profiling_. What MSDN is talkin…
»
Ryan Ries
I was curious about a couple things. MSDN strongly discourages the use of the __rdtsc() intrinsi…
»
zenmumbler
For those interested in Mac OS X development, I created a CoreAudio based sample program that sho…
»
Matt Gilene
For anyone using Sublime Text as their editor here is a build system that should automatically bu…
»
M'aiq
[strike]My bad, I had wine-git from the AUR, it works now thanks[/strike] Man this forum is confu…
»
M'aiq
My bad, I had wine-git from the AUR, apparently it gets rid of some stuff when it's done compilin…
»
Evan Shaw
Have you installed wine? 1pacman -S wine I'm also on Arch fwiw.
»
Neil Blakey-Milner
The other D language feature that makes metaprogramming possible without leaving the language (ie…
»
M'aiq
I tried adding x86intrin.h but I get this error 1 2 3/usr/bin/ld: cannot find -lwinecrt0 collect…
»
Neil Blakey-Milner
The only dragons will be in the Dragon Punches! Shoryuken!
»
Awais Ahmad
If its not too much work I would like to have a build, it would be interesting to be able to test…
»
Christopher O Connor
Hi, I would like to see that.
»
Mārtiņš Možeiko
CoCreateInstance is in objbase.h. You need to include windows.h to use it, and link to ole32.lib …
»
Mārtiņš Možeiko
If you are going to do your own sound mixing like Handmade Hero does, then it doesn't matter. Bot…
»
Joel Brage
Right. But the directsound API and the XAudio2 api look very alike to me. Have you got experience…
»
Stefan Koch
Of course without the use of lex or yacc! Just like HandmadeHero. Everything with explanation an…
»
Stefan Koch
I just watched yesterdays stream. casey mentions that he does not want to introduce to much langu…
»
Ron Sokolovsky
Just kidding... loving it. But seriously, 15 episodes and still no dragons...
»
Patrick Lahey
There is often a performance and code size hit associated with decoupling things. There are ways…
»
Bert Proesmans
I suppose any string that Google Maps understands is valid to put into the location field under p…
»
Nicolas Cohen
Use CartoDB, its easier and better. http://cartodb.com/
»
Nicolas Cohen
I'm one of those 20 guys from Argentina! Hi there : )
»
Mārtiņš Možeiko
CoCreateInstance will work fine on Windows 8. You can use it instead just fine. Microsoft really …
»