Mean UI Thread

Results 33 comments of Mean UI Thread
trafficstars

Facebook's react-native also uses JSCore, and implemented some jschelpers here https://github.com/facebook/react-native/tree/master/ReactCommon/jschelpers which heavily depends on their https://github.com/facebook/folly library. I'm not saying that it is a good option, but maybe they...

found this https://github.com/charto/nbind

this is for emscripten-only, but the api/concept might be worth studying: http://kripken.github.io/emscripten-site/docs/porting/connecting_cpp_and_javascript/embind.html The emscripten team were toying with the idea of deprecating embind in favor of using nbind: https://github.com/kripken/emscripten/issues/4770 However,...

also found an experimental n-api implementation for emscritpen https://github.com/RReverser/emnapi

I completely understand your point of view here. My concern is more about `BGFX_BUILD_EXAMPLES` vs `BGFX_INSTALL_EXAMPLES`. I would simply get rid of the later option. It makes no sense to...

And also, it creates problems for IDE other than visual studio. I'm on Linux using QtCreator and it complains that it can't find `examples-06-bump` executable when I try to launch...

but again, it's not a big deal. turning on `BGFX_INSTALL_EXAMPLES` solves everything for me. I am very pleased with everything that you've done. Your project is very thorough and even...

It's only necessary for running bgfx's examples. Last time I tried, some (if not all) examples that uses their own pre-compiled shaders were crashing at runtime.

~I suppose I could implement my own _includer_, which seems to be the only customizable thing that I found that is passed to the compiler.~ EDIT: includer interface isn't reached...