Steven Lu

Results 162 comments of Steven Lu

Related issue that mentions this Float64Array issue under emscripten: https://github.com/kripken/emscripten/issues/629 I have successfully taken the box2d.js file, and replaced instances of "Float64Array" inside of it with "Float32Array" and the resulting...

I have been using a really small test case (box shape inside a 4-vert chainshape) that I tested today and saw it worked starting from Firefox version 10 (and safari...

I've got this (compiled with `-O2 --closure 0`) ... It's trying to call a 0 value as a function : ![error](http://i.imgur.com/a2ASz.png?1) ![error 2](http://i.imgur.com/nWiTd.png?1)

Yes LLVM 3.1, I obtained the binary from LLVM site, and using emscripten from the github. Machine is OS X 10.7.4. It just looks like $25 pulls values out of...

I have tried emscripten test suite "sanity" run on Ubuntu 12.04 x64 guest in VirtualBox on OSX 10.7.4 host. I have install node, it is accessible on the command line...

Indeed. I have been trying to run that. WIth a 1GB RAM virtual machine it failed 7 tests (looked like all of them were because of node running out of...

I'm wondering if you could scan through this test output and tell me if it is python that appears to be running out of stack space, or something else? ```...

Oh, it got cut off. Okay I will hash this out at a later time. Thanks for your help!

I've gotten the offset fixed by having the code changed to: ```diff diff --git a/st7735r.cpp b/st7735r.cpp index ceac386..5b73c3f 100644 --- a/st7735r.cpp +++ b/st7735r.cpp @@ -92,7 +92,7 @@ void InitST7735R() //...

In my testing, the only way to get this particular display to utilize all of its surface is to set DISPLAY_NATIVE_HEIGHT to 320, rather than DISPLAY_NATIVE_WIDTH to 320. This is...