aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA1029384756 <hayden.gray104@gmail.com>2026-01-02 17:41:20 -0500
committerA1029384756 <hayden.gray104@gmail.com>2026-01-02 17:41:20 -0500
commit08dd0cb0af79c8712be6139b28f075d5810ce77f (patch)
tree1c11a92bdd999145fcf5de35330585efd2be9040
parentc867143a581cace6adec1ac3097ba2936e8ddda6 (diff)
[vendor/sdl3] shortened enum naming
-rw-r--r--vendor/sdl3/sdl3_video.odin12
1 files 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 {}