clay/renderers/SDL2
Funto e11a394c25
[Compilers] Fix MSVC compilation with CMake (#178)
Co-authored-by: Nic Barker <contact+github@nicbarker.com>
2025-01-10 20:59:13 +13:00
..
clay_renderer_SDL2.c [Compilers] Fix MSVC compilation with CMake (#178) 2025-01-10 20:59:13 +13:00
README [Renderers/SDL2] Create initial SDL2 renderer (#115) 2024-12-28 19:15:22 +13:00

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

- Border rendering
- Image rendering
- 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"];
```