SnapperTT

Results 8 issues of SnapperTT

Previously this would always use "x86_64-apple-darwin15-" as the toolchain. Now it autodetects the correct "x86_64-apple-darwinXX-", assuming that x86_64-apple-darwinXX-clang is in $PATH (which it should be is osxcross has been correctly...

Adds a number of int casts to take out gcc -wnarrowing spam

Here is the problem: ``` SDL_FontCache/SDL_FontCache.c:2724:26: warning: narrowing conversion of ‘y’ from ‘float’ to ‘int’ [-Wnarrowing] 2724 | FC_Rect result = {x, y, 0, 0}; ``` I'm getting ~20 of...

OpenGL has glCopyBufferSubData https://registry.khronos.org/OpenGL-Refpages/gl4/html/glCopyBufferSubData.xhtml I could have a crack at making an OpenGl implementation of this feature but I have no idea as to how to approach the other backends....

enhancement

Looking for a channel on the channel bar is hard. Likewise, videos are appear in a jumbled order, so being able to sort both would be nice. Cheers

Deals with some parts of issue #4

Nice library. Here are the issues: 1. example.cpp needs a `#include ` for `std::uint32_t` support 2. Here is the other compile errors: ``` [ 25%] Building CXX object example/CMakeFiles/examples.dir/main.cpp.o cd...

I use `sdl-stb-font` (https://github.com/SnapperTT/sdl-stb-font) for font rendering which conflicts with FontStash, so I've put everything FontStash related behind an `#include` guard. By default nothing is changed but a user may...