Andre Weissflog
Andre Weissflog
- add tests for _sg_track_t funcs - Windows support - consider placing stream-update buffers in host-visible memory, make them double-buffered and don't update those buffers via staging - implement streamlined...
There's tons of deprecation warnings in the sokol_app.h backend for iOS 26 mainly around screens and windows. Need to figure out how to fix those programmatically (as opposed to a...
> NOTE: Postpone the rest of the implementation until an actual use case pop up. ...postpone the following things into a separate update to not delay the first resource view...
> Update: wait with this until after MTKView removal. See comment below. ...when looking at the new frame stats implemented via https://github.com/floooh/sokol/pull/1334 it looks like in some frames during window...
E.g. similar to fontstash (I guess it can even replace fontstash. See: https://github.com/memononen/Skribidi/ PS: also for simpler scenarios check out using stb_truetype.h directly, maybe a 'glue header' sokol_stbtruetype.h might make...
With the view update there's the following 'loophole' when destroying a view and its associated image: ```c sg_destroy_view(view); sg_destroy_image(sg_query_view_image(view)); ``` The `sg_destroy_image` call will be a silent no-op because `sg_query_view_image()`...