Peter Vullings
Peter Vullings
Markdown is useful because it leaves the formatting/display up to the client. Example - you may be converting markdown to richtext to display within a mobile app, instead of displaying...
Just here to add my "me too"
An additional note if you are working on this. I just make the same 'forced' fix to get `llvm-ar` on windows (i.e. `flags { "LinkTimeOptimization" }`) After premake generated the...
@lvdpower This is how I did it: `premake5 vs2019` This generates the solution and project files, which you can then open in Visual Studio. As @JCash mentioned, there was no...
Thanks for the answers (and for the fantastic product) Luigi - sorry, I should be more clear. I am developing a c++ app: 1. Create GL window with GLFW (working...
In case anyone comes across this in the future, there is a good example in the repo but it's a bit tricky to find :) https://github.com/rive-app/rive-cpp/tree/master/skia/viewer
For anyone with this issue in the future. If you are compiling on windows and require a debug build with an iterator debug level of 2, this is how I...
MSVC has [_alloca and _malloca](https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/malloca?view=msvc-170) for stack allocation. I'm guessing that's what the abstraction layer would resort to.
> Clang has much better support for SIMD, whether that's SSE, NEON, or WASM, so I would really push for us to drop MSVC support and instead focus on figuring...
@luigi-rosso Is the 'official' ( 😁 ) support on windows for clang-cl and not MSVC? If so, I will close this PR.