widberg
widberg
https://stackoverflow.com/questions/24145101/quartzcore-cametallayer-h-file-not-found looks like a problem with the CI environment not being setup to use an iOS simulator that supports `CAMetalLayer` rather than a problem with the project code.
From what I can see, only the [dear-imgui](https://github.com/JoshuaBrookover/bgfx.cmake/blob/master/cmake/3rdparty/dear-imgui.cmake#L19) and [meshoptimizer](https://github.com/JoshuaBrookover/bgfx.cmake/blob/master/cmake/3rdparty/meshoptimizer.cmake#L18) targets publicly `target_include_directories` the `${BGFX_DIR}/3rdparty` directory. This include should be isolated to the examples and geometryc since those are the...
The includes on the dear-imgui and meshoptimizer targets need to be public for the examples and geometryc executables to call the functions in those libraries. I recommend adding your version...
The targets conflict because you are trying to create 2 targets with the name `meshoptimizer` not because the examples are enabled. You can add your own version of meshoptimizer and...
This works for me, thanks! Not sure what happened between 0.2 and 0.3 but using the older version I was able to get a PDB where the newer one would...
Unfortunately you are correct that there isn’t much that can be done here at the library level. usercall.hpp depends heavily on undocumented and undefined behavior in MSVC and the new...
Thanks for the C-- link! Heads up, Clang already allows __thiscall on non-member functions, no modifications needed, so the __fastcall trick isn't necessary if you are using Clang. I tweeted...
Thanks for opening an issue; sorry I took so long getting to this, I haven't checked the repository in a while and GitHub didn't feel like sending me a notification....
I have a *rough* draft of this at https://github.com/widberg/bilge using https://github.com/danlehmann/arbitrary-int/pull/38. It doesn't play nice with `padding` and `reserved` fields yet. I think these fields should not be serialized so...
I was waiting for the arbitrary-int pr to go through so I wouldn't have my git repo as a dependency but I'll open a draft pr so it's easier to...