themancalledjakob
themancalledjakob
to get a better overview over what works and what doesn't, I thought it would be good to have a gallery of all examples. I made a little sketch of...
cool :) i'm happy this is useful! > would be awesome if we could somehow redirect the console error messages to the main console to make it easier to track...
> The 3DPrimitivesExample works if I comment out this line: > > ``` > function _html5video_grabber_pixel_format(id) { > // return allocate(intArrayFromString(VIDEO.grabbers[id].pixelFormat), "i8", ALLOC_STACK) > } > ``` > > Otherwise...
hmmm not having tested it, but it should be possible to override `console.error` as seen here: https://stackoverflow.com/questions/69460871/how-to-catch-console-error-so-title ```javascript console.errorOriginal = console.error; console.error = (...messages) => { console.errorOriginal(...messages); // add messages...
exact same error with result of uname -a Linux raspberrypi 3.2.25+ #250 PREEMPT Fri Jan 3 18:41:00 GMT 2014 armv6l GNU/Linux
alright, i removed "-mfloat-abi=softfp" in the makefile, and this is the result  it works! thank you marek!
this did it for me, not sure if more has to be adjusted. I only tested with a simple example ```diff --git a/modules/openFrameworks.cmake b/modules/openFrameworks.cmake index 052c0d1..52a59be 100644 --- a/modules/openFrameworks.cmake +++...
> There was a script from @themancalledjakob. With that it was possible to compile all examples with Emscripten at once, somehow I do not find it anymore. Something like that...
@ofTheo I had a look at your script, very cool! I love the added source files with syntax highlighting. I didn't find my former script back yet, but it seems...
sure, i don't know how to properly rebase a PR, so I just made a new one based on master: #259