@kladdehelvete:
there's a difference between our academic understanding of a system and the most…
You may find this useful. The (free) source code download for this book:
Modern X86 Assembly La…
Just a quick reminder: the design of Handmade Hero is not up for modification, so if you want to …
Thanks, that cleared things up nicely.
I wonder what would happen on the yearly "physicist-convention", if someone raised their hand and…
yea i did put (server-start) .. no idea why it wasn't working but i've found a "fix"? i believe.…
Closing the window does indeed close the server on Windows (maybe there's a way to avoid that; bu…
What I found with at least the first piece of DirectSound code is that it updates the DSsoundbuff…
I don't think exploratory programming and detailed analysis and design are inconsistent. In this…
okay i got it working now, but it still opens a new windows every time i call it via terminal ins…
Ok, so here's a discussion we apparently need to have. I didn't think there still were people who…
It seems the problem is caused by the fact that you have a double quote at the start of the insta…
@norswap
i've tried implementing your .bat on my end and got some errors which im not sure what
…
Nimbal [quote=Flyingsand]
audio typically is handled in a separate high-priority thread since it …
itsuart thank you for response.
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 …
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…
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…
[quote=Flyingsand]
audio typically is handled in a separate high-priority thread since it is more…
vcs tells you only what already has been done and not what you intend to do. has nothing to do wi…
But how will call to _mm_and_ps work? It accepts two arguemnts with __m128 type. But _mm_setr_epi…
Fixed.
mmozeiko Note that now all_ones variable is same as all_ones_int in your comment [...]
…
To get assembly I posted at bottom of post it should be:
1
2__m128 all_ones = _mm_set1_ps(1.0f); …
Good catch! FYI, I tested it on Clang, which generates the same code. I've edited it to suit.
You can use _mm_set1_ps(1.0f) to get number 1 in all four lanes of SSE register, no need for two …
Incidentally, I've been mucking around with SSE2, and this is the simplest and fastest floor func…
Does that actually make a difference?
Yes it makes a difference. You can not use 32-bit in 64-bit…