clay/renderers/SDL2
2024-12-28 19:08:49 +13:00
..
clay_renderer_SDL2.c clean up references to clay overflow trap 2024-12-27 20:12:55 +13:00
README Add scroll wheel detection to SDL2 example 2024-12-28 19:08:49 +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"];
```