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.
Simon Anciaux
And in the case of DirectSound you can overwrite, so you'll just have the usual amount of latency…
»
Simon Anciaux
Did you try to go in a bookshop to see if they can't order it at a lower price ?
»
Colin J. Mills
Yeah I understand that this probably makes the most sense. I find the DOM API to be a bit clunk…
»
cl777
I actually found some used copies for around $90, but they don't ship to Germany. I guess I also …
»
albatros
The price is so steep I fist thought it was out of print. Weeks passed and I then discovered 150$…
»
Miles
You generally do all color math in linear space unless a technique explicitly calls to do otherwi…
»
Mārtiņš Možeiko
That is pretty much only way how I do webpages. Just plain JS, CSS and HTML. Same way I did it 15…
»
Mārtiņš Možeiko
In WASAPI it is very common to have separate thread that submits buffer to sound card. This threa…
»
Asaf Gartner
You can make webapps without using libraries, and you'll probably end up with a much smaller JS p…
»
Naman Dixit
Thanks. I will give WASAPI a look. Having two audio backends will probably be good for debugging …
»
Colin J. Mills
Does anyone have any experience with "Handmade JS" as in the simplest way of getting into web de…
»
Mārtiņš Možeiko
You won't see much speed gains in this case because at beginning of loop you are doing a lot of s…
»
cl777
Hello again, does anyone from the US know a source for this book that ships to Germany. The affo…
»
cl777
Hello Mārtiņš, thanks for your insights and the link (in the end it`s all about knowing the righ…
»
Jason
This is a message for Allan. Allan, I was wondering if you're still offering closed source licens…
»
Simon Anciaux
I'm not sure but I think computation should always be done in linear space. In my mental model, i…
»
Simon Anciaux
You should use Windows Audio Sessions API (msdn) instead of DirectSound. See the thread Day 19 - …
»
Naman Dixit
I started working on an engine some time ago and just decided to implement audio support. So, I t…
»
twelvefifteen
Hey all. I'm curious if, unless specified otherwise, all image processing algorithms should be pe…
»
Castan
Ah, I see. That's nice, at least now I have something to keep track of the state of this. :-) Tha…
»
Mārtiņš Možeiko
This is ok. Modern CPUs execute a lot of stuff ahead of "current" instruction. To do so it intern…
»
cl777
I tried 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17V3U *AddVectors_128(V3U *va, V3U *vb, …
»
x13pixels
CastanTrying to resurrect this; Has anyone actually tried this? I've tried a bunch of solutions f…
»
Mārtiņš Možeiko
Try this: 1 2 3 4 5 6 7 8 9 10 11 12 13V3U *AddVectors_128(V3U *va, V3U *vb, u32 size) {…
»
cl777
Hello Mārtiņš, 1. I'm compiling with Cl -O2 2. That was the culprit. Comparing apples and orange…
»
Mārtiņš Možeiko
Few questions: 1) are you compiling with optimizations (O2/O3) when benchmarking? 2) you are actu…
»
cl777
Hi Folks, I'm trying to wrap my had around basic SIMD stuff. I wrote a simple program that adds …
»
Castan
Trying to resurrect this; Has anyone actually tried this? I've tried a bunch of solutions found a…
»
ratchetfreak
The stack is part of the calling convention between functions. In most cases it is a area of memo…
»
Mārtiņš Možeiko
Heap and stack are not really concepts for language. It is more runtime thing. If you have pointe…
»