OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:system_cursor
(Results
1 - 1
of
1
) sorted by null
/prebuilts/misc/windows/sdl2/test/
testwm2.c
48
int
system_cursor
= -1;
local
111
--
system_cursor
;
112
if (
system_cursor
< 0) {
113
system_cursor
= SDL_NUM_SYSTEM_CURSORS - 1;
117
++
system_cursor
;
118
if (
system_cursor
>= SDL_NUM_SYSTEM_CURSORS) {
119
system_cursor
= 0;
124
SDL_Log("Changing cursor to \"%s\"", cursorNames[
system_cursor
]);
126
cursor = SDL_CreateSystemCursor((SDL_SystemCursor)
system_cursor
);
Completed in 131 milliseconds