THIS PAGE IS A WORK IN PROGRESS ... Please make edits to this page to improve it!
Create a system cursor.
SDL_Cursor* SDL_CreateSystemCursor(SDL_SystemCursor id);
id | an SDL_SystemCursor enum value |
Returns a cursor on success or NULL on failure; call SDL_GetError() for more information.
This function is available since SDL 3.0.0.
SDL_Cursor* cursor;
cursor = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_HAND); SDL_SetCursor(cursor);
CategoryAPI, CategoryMouse, CategoryDraft