clay/renderers/SDL2
Nic Barker 9d940c1f8e
Some checks failed
CMake on multiple platforms / build (Release, cl, cl, windows-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, clang, clang++, ubuntu-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, gcc, g++, ubuntu-latest) (push) Has been cancelled
[Core] Replace config macros with a single unified configuration struct (#240)
2025-02-04 17:00:19 +13:00
..
clay_renderer_SDL2.c [Core] Replace config macros with a single unified configuration struct (#240) 2025-02-04 17:00:19 +13:00
README Extend SDL2 Renderer and SDL2-video-demo (#208) 2025-01-18 21:42:18 +13:00

Please note, the SDL2 renderer is not 100% feature complete. It is currently missing:

- Rounded rectangle corners

Note: on Mac OSX, SDL2 for some reason decides to automatically disable momentum scrolling on macbook trackpads.
You can re enable it in objective C using:

```C
[[NSUserDefaults standardUserDefaults] setBool: YES
                                       forKey: @"AppleMomentumScrollSupported"];
```