| Age | Commit message (Collapse) | Author |
|
|
|
|
|
for zig master (2023-10-17)
|
|
It feels a little unfinished when you can SetMasterVolume but can't
really Get it. So to finish the symmetry here is the GetMasterVolume
implementation.
|
|
* Fix SDL keyboard issue
We have added a mapping table between raylib keys and SDL scancodes.
* Change `ScancodeToKey` array type
|
|
* Add missing implementations
* Add missing implementations 2
* Add missing implementations 3
* Add missing implementations 4
* Add missing implementations 5
|
|
|
|
|
|
* Implemented GetCurrentMonitor
* remove traceloog in GetCurrentMonitor
|
|
|
|
Currently doing the following:
```
make
touch rcore_desktop.c
make
```
Will not result in rcore.o getting compiled again, despite that
rcore_desktop.c has changed
This commit resolves that
|
|
Co-authored-by: Stanislav Yablonskiy <[email protected]>
|
|
* Fix mouse wheel getting stucked scrolling up or down
* Fix mouse movement on 3D
* Fix mouse button presses
|
|
|
|
|
|
* Update `PLATFORM_DRM` implementation of `GetGamepadAxisCount`
* Update
* Update `PLATFORM_DRM` implementation of `GetGamepadName`
* Add example to test gamepad info functions
Fix typo
* Update new gamepad info example
* Move axis count update out of GamepadThread - race condition
* Remove pointless if statement
* Start integrating stuff from the mikesinput lib
* Add more logging
* Add semicolon
* Add forgotten static
* More fixes
* Update axisCount to be array
* More debugging
* Add forgotten index to ready check
* Add path logging
* Missing parenthesis
* Add missing slash
* Fix axis count being reset to 0
* Fix missing paren
* Test polling joystick button events
* Major updates
* Fix missing array index
* Fix another missing array index
* Update example
* dumb logging
* Wrong constant for ev.code handling
* More dumb logging
* Remove some logging
* Add FPS to gamepad info example and try for max FPS
* tweak
* Revert example
* Add fps back
* Clean up after merge
* Switch axisCount to be an array
|
|
|
|
Changes the return type of `InitGraphicsDevice()` from `bool` to `int`.
Adds a return at the end of `InitPlatform()`.
|
|
|
|
* Fix SetMouseCursor implementation for PLATFORM_WEB
- Restrict function to only set the cursor inside the canvas
* Set the CORE input mouse
|
|
|
|
|
|
|
|
|
|
`InitGraphicsDevice()` could be confusing because the function actually initialized many things: window, graphics, inputs, callbacks, timming, storage... restructured it.
|
|
|
|
|
|
|
|
(#3395)
|
|
|
|
Fixed the fact that coordinates were not normalized on Android, preventing detection of `GESTURE_DOUBLE_TAP`
|
|
* Fix drm compilation issue on InitWindow
* Fix android compilation issue on InitWindow
|
|
|
|
|
|
Reviewed `InitWindow()` to clearly note platform specific code
|
|
It seems more standard than [TRUN]
|
|
|
|
|
|
* [rtext] TextFormat now alerts user to truncation.
* Update rtext.c
* Update rcore.c
* Update rtext.c
|
|
|
|
|
|
|
|
|
|
|
|
* Update `PLATFORM_DRM` implementation of `GetGamepadAxisCount`
* Update
* Update `PLATFORM_DRM` implementation of `GetGamepadName`
* Add example to test gamepad info functions
Fix typo
* Update new gamepad info example
* Move axis count update out of GamepadThread - race condition
* Remove pointless if statement
|
|
|
|
|
|
|
|
|
|
* Hotfix for Vector2LineAngle(), should probably be reviewed along with the rest of raylib angle functions to determine what coordinate system we want.
* Hotfix for Vector2LineAngle(), should probably be reviewed along with the rest of raylib angle functions to determine what coordinate system we want.
* [raymath] Hotfix for Vector2Angle and corresponding example
* [raymath] Hotfix for Vector2Angle and corresponding example
---------
Co-authored-by: Ray <[email protected]>
|