diff options
author | sanine-a <sanine.not@pm.me> | 2023-05-03 13:04:55 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2023-05-03 13:04:55 -0500 |
commit | ab3005ffd6999885deb96b476d4620eb5d0135a8 (patch) | |
tree | 2bd4cacea8efb99f3466506e18ff1d6560aefa9a | |
parent | cf9d5ca20678944b583d6d0405049c5b5f025e17 (diff) |
add cursor input mode enums
-rw-r--r-- | src/glfw/setup.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/glfw/setup.h b/src/glfw/setup.h index 3e5b482..7ea67ad 100644 --- a/src/glfw/setup.h +++ b/src/glfw/setup.h @@ -168,6 +168,10 @@ H_GLFW_FUNCTIONS #define H_GLFW_ENUM \ + X("CURSOR", GLFW_CURSOR) \ + X("CURSOR_NORMAL", GLFW_CURSOR_NORMAL) \ + X("CURSOR_HIDDEN", GLFW_CURSOR_HIDDEN) \ + X("CURSOR_DISABLED", GLFW_CURSOR_DISABLED) \ X("FOCUSED", GLFW_FOCUSED) \ X("ICONIFIED", GLFW_ICONIFIED) \ X("RESIZABLE", GLFW_RESIZABLE) \ |