I have fixed a few bugs in the above description and made it so that it never writes behind (skip…
Thanks, I'll implement WASAPI support once I tackle multithreading. No, I know about that. I was…
Hey, apologies for the slow response, I am sending details by email now.
And in the case of DirectSound you can overwrite, so you'll just have the usual amount of latency …
Did you try to go in a bookshop to see if they can't order it at a lower price ?
Yeah I understand that this probably makes the most sense. I find the DOM API to be a bit clunky t…
cl777 —
I actually found some used copies for around $90, but they don't ship to Germany. I guess I also h…
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 otherwis…
That is pretty much only way how I do webpages. Just plain JS, CSS and HTML. Same way I did it 15 …
In WASAPI it is very common to have separate thread that submits buffer to sound card. This thread…
You can make webapps without using libraries, and you'll probably end up with a much smaller JS pa…
Thanks. I will give WASAPI a look. Having two audio backends will probably be good for debugging a…
Does anyone have any experience with "Handmade JS" as in the simplest way of getting into web dev …
You won't see much speed gains in this case because at beginning of loop you are doing a lot of sc…
cl777 —
Hello again, does anyone from the US know a source for this book that ships to Germany. The afford…
cl777 —
Hello Mārtiņš, thanks for your insights and the link (in the end it`s all about knowing the rig…
Jason —
This is a message for Allan. Allan, I was wondering if you're still offering closed source license…
I'm not sure but I think computation should always be done in linear space. In my mental model, in…
You should use instead of DirectSound. See the thread in these forums. You can also search for o…
I started working on an engine some time ago and just decided to implement audio support. So, I tu…
Hey all. I'm curious if, unless specified otherwise, all image processing algorithms should be per…
Castan —
Ah, I see. That's nice, at least now I have something to keep track of the state of this. :-) Than…
This is ok. Modern CPUs execute a lot of stuff ahead of "current" instruction. To do so it interna…
cl777 —
I tried } [/code] but it still only uses one register. Here's the dumpbin But I wonder, wouldn't…
Castan, The watch window bug when using a Clang generated PDB is written up here . Note that I st…
Try this: }[/code] Sometimes compilers like dereferencing and ++ instead of [i+n].
cl777 —
Hello Mārtiņš, I'm compiling with Cl -O2 That was the culprit. Comparing apples and oranges. Wh…
Few questions:are you compiling with optimizations (O2/O3) when benchmarking?you are actually proc…
cl777 —
Hi Folks, I'm trying to wrap my had around basic SIMD stuff. I wrote a simple program that adds tw…