Andre Weissflog
Andre Weissflog
Good catch, but shouldn't at least GL be linked? (for the theoretical case that sokol_gfx.h is used without sokol_app.h) PS: are you getting warnings about those duplicate libraries? I still...
Currently the only way to change SG_NUM_INFLIGHT_FRAMES is to patch the sokol header, I did it this way because that value unfortunately leaks into the public API (for instance here:...
IIRC mainly because the Android entry code looks and works completely different then all other platforms. Most importantly, Android doesn't have the C main function, but instead `ANativeActivity_onCreate` is the...
That looks reasonably simple :) Somehow and suddenly there's a wave of PRs coming in, it might be a couple of days before I have time to properly look at...
PPS: > By the way, is there a code style or code formatter I should use on the code when submitting PR? I don't have clang-format setup yet, you should...
FYI I'll start testing this PR next, but not sure yet if I'll get around to merge today or tomorrow.
Hmm, when testing, pasting from the system clipboard *into* the sokol application works, but not pasting out of it into the system clipboard (e.g. `sapp_set_clipboard_string()` seems to be a no-op....
Interesting that it works on your side, can you describe step by step how you cut/copy out of an sokol-app application into the system? Maybe I messed something up or...
Hmm, as far as I can see there's currently no clipboard support at all in the sokol_app.h X11 backend. I don't know how "terrible" an implementation via Xlib would be,...
Yeah I'm aware of those functions (and IIRC actually used them in early sokol_app.h versions), but had a lot of trouble in the past because fullscreen implementation details differ a...