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.
Jay
I have a question re day 66. Can someone explain to me why we check if the position is within the …
»
Jay
That did help thanks. But still only running at 50ms a frame when built with VS compared to buildi…
»
Mārtiņš Možeiko
Yeah loading executable code from sdcard (internal or external) won't work. That's an security iss…
»
The_8th_mage
I tried to program stuff to android NDK, and i saw that the build process takes forever, or 60 sec…
»
droidix
but programs on windows will always have kernel32.dll loaded But what are the benefits of avoid l…
»
Miguel Lechón
. From minute 11 to minute 17, Casey explains the setup that creates the pdbs with different filen…
»
Andy
I somehow missed the part where Casey makes the junk pdb files delete automatically. Mine keep pil…
»
Ragnar
the latest source file does come bundled with all .zip's from 100 up, which you refer to here.[/q…
»
robby
the latest source file does come bundled with all .zip's from 100 up, which you refer to here.
»
Mārtiņš Možeiko
Link is available on your SendOwl page - open URL you received in e-mail. That page currently has …
»
Ragnar
Hey guys, I can't seem to find the source code for the days past 099. I heard Casey intended to pu…
»
B
Thanks this helped. I had put in an "=" instead of a "-" on a single line. I didn't catch it the f…
»
people
If you don't know, you can use the diff command or a gui diff program to compare the zip source wi…
»
Benjamin Bumblebee
You're right, audio seems totally fine at this very instant and there's no clipping. So I've foll…
»
Cristián Donoso
Thank you for your responses. It does seem that some kind of checking process is holding the file …
»
Mārtiņš Možeiko
Yes, adding more calculations to loop shows better results: void fun_neon(int COUNT, float* A, fl…
»
Ameen Sayegh
what you did is avoid LINKING to kernel32.dll Right? but programs on windows will always have kern…
»
Mārtiņš Možeiko
Oops, it's actually worse. Much worse. I guess code before in NEON function used some data from ca…
»
Mārtiņš Možeiko
By default ndk-build compiles optimized build. If you want debug build you need to add APP_OPTIM=d…
»
The_8th_mage
i just downloaded a app from the google store called VFP bench and it showed me benchmarks for a l…
»
Mārtiņš Možeiko
How are you compiling/benchmarking? It could be compiler is smart enough to turn your non-NEON pat…
»
B
I just started following along with the stream and haven't had any problems with the code until no…
»
Casey Muratori
NEON looks to be solidly twice as fast in those benchmarks, though, sometimes four times as fast? …
»
The_8th_mage
If you'll look here you can see that a lot of those device don't give much throughput.
»
Casey Muratori
Yeah, the rule is that there is no programming of any kind allowed if I'm not streaming.Casey
»
Casey Muratori
Ah, I get what you're saying. So we're not talking about the operation, we're talking about the p…
»
people
It happens at the same time every time, it just takes a minute or so for it to occur. Are you not …
»
The_8th_mage
A mul takes 2 registers of 128 bit, so the cpu should pass 256 bits to the alu. But the connection…
»
Casey Muratori
Something doesn't add up there :) A 4x32 mul is 128 bits not 256 bits. So if the NEON core on yo…
»
Casey Muratori
Yeah - I meant is there some reliable way of making it happen. We can leave it running in the bac…
»