Jonathan Hale
Jonathan Hale
For displaying Container types more conveniently when debugging in Visual Studio, I created a very very rudimentary .natvis file: ```xml {{ size={_size} }} _size _data {{ size={_size} }} _size _data...
Hi @mosra, summarizing gitter messages: It is possible to run applications on windows through system users without home directories. In this case `CSIDL_PERSONAL` does not known and `SHGetFolderPathW()` will not...
Hi @mosra, as mentioned on gitter, here's the minor optimizations I did. The only really significant one is 3b0bce3352455e095bca9b2130dd0c5fada4472d, in case you want to cherry-pick it for minimal invasiveness. Best,...
Hi @mosra ! As per gitter, here's the fix for the leaking handle. Windows will refuse to delete folders with open handles, which means every `list()`-ed folder would be locked...
The `FindGLES3.cmake` links the GL library and for CMake >= 3.13 also adds `-s USE_WEBGL2=1`. Doing both leads to duplicate defined GL symbols, removing the INTERFACE_LINK_LIBRARIES property fixes the issue....
Hi all, in WebGL, there is the option to set powerPreference to prefer high performance or low power consumption, _or default_. The final value is currently not supported [in EmscriptenApplication](https://github.com/mosra/magnum/blob/master/src/Magnum/Platform/EmscriptenApplication.cpp#L372-L374),...
Hi @mosra ! As per #453 (Fix sphere frustum intersection), here's the fix plus extensive tests. I made a conscious descision to mark "touching" geometries as non-intersection. Even though mathematically,...
Hi @mosra ! As mentioned in #441 , here's the split-off of the Phong implementation. Best, Jonathan
Hey @mosra ! here's some initial draft for Skinning stuff to start discussion. Cheers, Jonathan **Open Questions** 1.Naming of Attributes **TODOs** - [x] Add `Weights` and `JointIds` to AttributeNames and...
Hello everybody! I started reimplementing the ObjImporter pretty much a year ago for a University project, since I needed to import .obj files with materials. While back then I only...