clay/renderers/SDL2/README
ppeb 8e3ed99a47
Extend SDL2 Renderer and SDL2-video-demo
Implements CLAY_RENDER_COMMAND_TYPE_IMAGE and
CLAY_RENDER_COMMAND_TYPE_BORDER for SDL2.

Both have been added to SDL-video-demo to provide examples.
2025-01-16 20:34:59 -06:00

12 lines
415 B
Plaintext

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