From 08dd0cb0af79c8712be6139b28f075d5810ce77f Mon Sep 17 00:00:00 2001 From: A1029384756 Date: Fri, 2 Jan 2026 17:41:20 -0500 Subject: [vendor/sdl3] shortened enum naming --- vendor/sdl3/sdl3_video.odin | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vendor/sdl3/sdl3_video.odin b/vendor/sdl3/sdl3_video.odin index 4a0b6840b..e4547d991 100644 --- a/vendor/sdl3/sdl3_video.odin +++ b/vendor/sdl3/sdl3_video.odin @@ -135,12 +135,12 @@ FlashOperation :: enum c.int { } ProgressState :: enum c.int { - PROGRESS_STATE_INVALID = -1, /**< An invalid progress state indicating an error; check SDL_GetError() */ - PROGRESS_STATE_NONE, /**< No progress bar is shown */ - PROGRESS_STATE_INDETERMINATE, /**< The progress bar is shown in a indeterminate state */ - PROGRESS_STATE_NORMAL, /**< The progress bar is shown in a normal state */ - PROGRESS_STATE_PAUSED, /**< The progress bar is shown in a paused state */ - PROGRESS_STATE_ERROR, /**< The progress bar is shown in a state indicating the application had an error */ + INVALID = -1, /**< An invalid progress state indicating an error; check SDL_GetError() */ + NONE, /**< No progress bar is shown */ + INDETERMINATE, /**< The progress bar is shown in a indeterminate state */ + NORMAL, /**< The progress bar is shown in a normal state */ + PAUSED, /**< The progress bar is shown in a paused state */ + ERROR, /**< The progress bar is shown in a state indicating the application had an error */ } GLContextState :: struct {} -- cgit v1.2.3