mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Merge pull request #2144 from Kelimion/glfw
Add RawMouseMotionSupported
This commit is contained in:
Vendored
+1
@@ -110,6 +110,7 @@ foreign glfw {
|
|||||||
WaitEventsTimeout :: proc(timeout: f64) ---
|
WaitEventsTimeout :: proc(timeout: f64) ---
|
||||||
PostEmptyEvent :: proc() ---
|
PostEmptyEvent :: proc() ---
|
||||||
|
|
||||||
|
RawMouseMotionSupported :: proc() -> b32 ---
|
||||||
GetInputMode :: proc(window: WindowHandle, mode: c.int) -> c.int ---
|
GetInputMode :: proc(window: WindowHandle, mode: c.int) -> c.int ---
|
||||||
SetInputMode :: proc(window: WindowHandle, mode, value: c.int) ---
|
SetInputMode :: proc(window: WindowHandle, mode, value: c.int) ---
|
||||||
|
|
||||||
|
|||||||
Vendored
+3
@@ -339,6 +339,9 @@ CURSOR_NORMAL :: 0x00034001
|
|||||||
CURSOR_HIDDEN :: 0x00034002
|
CURSOR_HIDDEN :: 0x00034002
|
||||||
CURSOR_DISABLED :: 0x00034003
|
CURSOR_DISABLED :: 0x00034003
|
||||||
|
|
||||||
|
/* Mouse motion */
|
||||||
|
RAW_MOUSE_MOTION :: 0x00033005
|
||||||
|
|
||||||
/* Behavior? */
|
/* Behavior? */
|
||||||
ANY_RELEASE_BEHAVIOR :: 0
|
ANY_RELEASE_BEHAVIOR :: 0
|
||||||
RELEASE_BEHAVIOR_FLUSH :: 0x00035001
|
RELEASE_BEHAVIOR_FLUSH :: 0x00035001
|
||||||
|
|||||||
Reference in New Issue
Block a user