oryol
oryol copied to clipboard
A small, portable and extensible C++ 3D coding framework
When mouse callbacks track canvas element then `EmscriptenMouseEvent:::canvasX/canvasY` values are broken inside of method `emscInputMgr::emscMouseMove(int eventType, const EmscriptenMouseEvent* e, void* userData)`. But if `EmscriptenMouseEvent::targetX/targetY` are used instead of` ::canvasX/canvasY` they...
Would be convenient for Linux user. Binary compiled from [Ericsson's implementation](github.com/Ericsson/ETCPACK)
I found this out while trying to run the Nuklear Oryol sample app. Repro: 1. Fetch oryol-samples and build them with fips 2. `fips run NuklearUIAdvanced` Expected: Runs just fine...
Hello, I'm trying to compile a practically empty project on OS X with the config metal-osx-xcode-debug and am receiving the following error. Any ideas? ``` PhaseScriptExecution CMake\ Rules /Users/samw3/prj/Ideas/GCodeMagic/fips-build/gcm/metal-osx-xcode-debug/oryol_Dbg/gcm.build/Debug/ALL_GENERATE.build/Script-08A437BE643C49A1BB4AB4CD.sh cd...
cling based C++ as scripting language / hot code reload Why? Able to run C++ script in runtime or compile it for max speed ( as in example https://github.com/derofim/cling-cmake )...
See here: https://github.com/philsquared/Catch It's header-only so probably doesn't require all the complicated build system support that UnitTest++ does...
I see there are no versions and releases so users must use bleeding edge or a fork of Oryol *and* all dependencies. It seems to me that in order to...
I just updated Mojave and tried to built my project (which has been working great). I now get these errors:  Any suggestions?
Oryol's RTTI doesn't work properly in Emscripten when using dynamic libraries. A simple test case: module.h: ``` class Module : public RefCounted { OryolClassDecl(Plugin); OryolBaseTypeDecl(Plugin); public: virtual ~Module(){} }; class...