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
Patrick Lahey
I don't think exploratory programming and detailed analysis and design are inconsistent. In this…
»
Rafael Grossi
okay i got it working now, but it still opens a new windows every time i call it via terminal ins…
»
Ianuarius
Ok, so here's a discussion we apparently need to have. I didn't think there still were people who…
»
norswap
It seems the problem is caused by the fact that you have a double quote at the start of the insta…
»
Rafael Grossi
@norswap i've tried implementing your .bat on my end and got some errors which im not sure what …
»
Flyingsand
Nimbal [quote=Flyingsand] audio typically is handled in a separate high-priority thread since it …
»
hendrix
itsuart thank you for response.
»
Andrew Bromage
For a safety-critical system, I think I'd want even the code pre-planned. But for a game? That's…
»
Justin
http://www.gamedev.net/page/resou...-visualization-is-important-r2969 Here it is Pseudonym73. I …
»
NoobSaibot
well i did, but the todo might not be related to the guy who wrote that part of the code. anyway,…
»
Bigpet
NoobSaibot yeah, i know. but how's that supposed to replace the TODO comment that states what you…
»
NoobSaibot
yeah, i know. but how's that supposed to replace the TODO comment that states what you're going t…
»
Bigpet
NoobSaibot vcs tells you only what already has been done and not what you intend to do. has nothi…
»
Benjamin Kloster
[quote=Flyingsand] audio typically is handled in a separate high-priority thread since it is more…
»
NoobSaibot
vcs tells you only what already has been done and not what you intend to do. has nothing to do wi…
»
Mārtiņš Možeiko
But how will call to _mm_and_ps work? It accepts two arguemnts with __m128 type. But _mm_setr_epi…
»
Andrew Bromage
Fixed. mmozeiko Note that now all_ones variable is same as all_ones_int in your comment [...] …
»
Mārtiņš Možeiko
To get assembly I posted at bottom of post it should be: 1 2__m128 all_ones = _mm_set1_ps(1.0f); …
»
Andrew Bromage
Good catch! FYI, I tested it on Clang, which generates the same code. I've edited it to suit.
»
Mārtiņš Možeiko
You can use _mm_set1_ps(1.0f) to get number 1 in all four lanes of SSE register, no need for two …
»
Andrew Bromage
Incidentally, I've been mucking around with SSE2, and this is the simplest and fastest floor func…
»
Mārtiņš Možeiko
Does that actually make a difference? Yes it makes a difference. You can not use 32-bit in 64-bit…
»
Thompson Lee
Thank you for your external tools setup that actually helped me a lot, and did saved some time. …
»
Sebastian
EDIT: first off I should say this is after watching ep 32, so maybe this has already changed in t…
»
Andrew Bromage
I would be interested in seeing that. In particular, it would be interesting to know how to plan …
»
Thompson Lee
After mucking around for 10 hours, I was able to export functions into the DLL, but I'm not happy…
»
Justin
I saw an article on Gamedev.net telling how to properly plan, I'll post the link if anyone is int…
»
Joshua de Leon
I hopped on to my Emacs to work tonight and whenever I try to open a file I get the error "select…
»
Thompson Lee
Does that actually make a difference? I was wondering since the end result was the same. :S I…
»
Michael Nicolella
Looks like your DLL is being built as 64-bit (x64 platform), but your executable is 32bit (Win32 …
»