ubkp
489f0b93f9
[rcore] Add `GetWindowPosition()` implementation for `PLATFORM_WEB` and fixes #3636 style/format ( #3637 )
* Add GetWindowPosition() implementation for PLATFORM_WEB and fixes #3636 style/format
* Remove double space
1 year ago
Braedon Lewis
1e7b99562a
Add new raylib-beef binding ( #3640 )
1 year ago
ubkp
10c82595b0
Add GetMonitorWidth() and GetMonitorHeight() implementations for PLATFORM_WEB ( #3636 )
1 year ago
Ray
38626dcffd
REVIEWED: HighDPI support on Web platform #3372 -WIP-
NOTE: The code is commented until the build system gets updated to latest emscripten.
1 year ago
Ray
d29b36310f
Merge branch 'master' of https://github.com/raysan5/raylib
1 year ago
Ray
88db11fda4
Update rtextures.c
1 year ago
Matthew Oros
cec2261e96
[rcore] Flip VR screens ( #3633 )
1 year ago
Matthew Oros
387506faab
[rcore] Remove unused vScreenCenter ( #3632 )
1 year ago
Romash
222f6f7877
Fix box blur symmetry & simplify code ( #3631 )
1 year ago
Benjamin Schmid Ties
6083d2b9f3
fixed coding style in function TextToFloat ( #3627 )
* function to convert string to float
* fix code to match coding conventions
1 year ago
lipx
a57a0ecd96
Update audio_stream_effects.c ( #3618 )
* Update audio_stream_effects.c
This may slightly improve performance and be more welcoming for new users despite being an more advanced feature.
void * usually throws an error in most compilers and it would be better to just avoid it.
Also added <stdbool.h> because booleans are, sometimes, not defined by <stddef.h>.
* Update audio_stream_effects.c
1 year ago
2Bear
9322ad0f9b
Ignore compiled dll binaries. ( #3628 )
1 year ago
Ray
c5ebdb8ba7
REVIEWED: Issue in sequence generation #3612
1 year ago
Ray
6f3c87a999
Fix #3613
1 year ago
riadbettole
31d3ed97c7
Update audio_raw_stream.c ( #3624 )
AudioInputCallBack has this
audioFrequency += 1.0f;
audioFrequency -= 1.0f;
cancels out each others
1 year ago
ubkp
a2e45239c3
[rcore] Complement `SetWindowState()` and `ClearWindowState()` for `PLATFORM_WEB` ( #3625 )
* Complement SetWindowState() and ClearWindowState() for PLATFORM_WEB
* Add FLAG_WINDOW_RESIZABLE to SetWindowState() and ClearWindowState() for PLATFORM_WEB
1 year ago
ubkp
39457ace2f
[rcore] Add `ToggleBorderlessWindowed()` implementation for `PLATFORM_WEB` ( #3622 )
* Add ToggleBorderlessWindowed() for PLATFORM_WEB
* Fix coding convention
1 year ago
ubkp
44eeda2475
Optimize gesture handling for PLATFORM_DRM ( #3616 )
1 year ago
ubkp
ed8a18ea64
[rcore] Fix real touch gestures for `PLATFORM_DESKTOP_SDL` ( #3614 )
* Fix touch gestures for PLATFORM_DESKTOP_SDL
* Complement note and optimization
* Events optimization
* Optimize gesture handling
* Reverts previous commit and fixes GESTURE_DRAG to not trigger GESTURE_SWIPE* when it ends
* Reapply previous gesture handling optimization also fixing GESTURE_DRAG to not trigger GESTURE_SWIPE* when it ends
1 year ago
Peter0x44
28bdaa2da6
Update projects/CMake/CMakeLists.txt to raylib 5.0 ( #3623 )
1 year ago
David Williams
032cc497ca
Updating CMake version to 5.0 so libraries are correctly versioned ( #3615 )
1 year ago
ubkp
a9ba51aa72
[rcore] Fix `IsMouseButtonUp()` for `PLATFORM_WEB` and `PLATFORM_DRM` ( #3611 )
* Fix IsMouseButtonUp() for PLATFORM_WEB
* Fix IsMouseButtonUp() for PLATFORM_DRM
1 year ago
ubkp
ab9bddb3bd
[rcore] Fix `IsMouseButtonUp()` and add touch events for `PLATFORM_DESKTOP_SDL` ( #3610 )
* Fix IsMouseButtonUp() and add touch events for PLATFORM_DESKTOP_SDL
* Fix coding convention
1 year ago
Kenneth M
8b33d1eeb9
Fix IsMouseButtonUp() ( #3609 )
1 year ago
lesleyrs
6b93180130
Fix for free camera mode ( #3603 )
* fix free and fp cam
* revert
1 year ago
ubkp
d99617d084
[rcore] Fix `IsKeyPressedRepeat()` for `PLATFORM_DESKTOP_SDL` ( #3605 )
* Fix IsKeyPressedRepeat() for PLATFORM_DESKTOP_SDL
* Fix missing space
1 year ago
ubkp
984e83c2d0
Fix GetKeyPressed and GetCharPressed for SDL ( #3604 )
1 year ago
Ray
731b210f51
REVIEWED: WARNING: `LoadFontData()` avoid fallback glyphs
This is a redesign on font loading, missing glyphs are skipped instead of falling back to font `.notdef` special character (usually "tofu" character).
It is changed because not all fonts support a fallback glyph.
One improvement could be allowing users to define a custom fallback character, for example `?` glyph.
1 year ago
Ray
a016b4ded2
REVIEWED: `LoadFontData()`, load image only if glyph has been found in font
1 year ago
Ray
84ae189953
Create raylib_1024x1024.png
1 year ago
Ray
26d61875ee
Create raylib.icns
1 year ago
Ray
8a586249d7
Fix Wrong Makefile flag #3593
1 year ago
Ray
d0a783e362
Revert "Fix Windows Hardcoding ( #3600 )"
This reverts commit 4ae2af0bcc
.
1 year ago
Ray
5aa84a34ea
Revert "Fix warning while using external GLFW older than version 3.4.0 ( #3599 )"
This reverts commit f1b0d15813
.
1 year ago
mr sihc
4ae2af0bcc
Fix Windows Hardcoding ( #3600 )
Compiles on Linux & co. now
1 year ago
Marco Maia
f1b0d15813
Fix warning while using external GLFW older than version 3.4.0 ( #3599 )
Co-authored-by: Marco Maia <marco.maia@iarasystems.com.br>
1 year ago
Peter0x44
8ae804ff9a
Fix cmake-built libraylib.a to properly include GLFW's object files ( #3598 )
I broke this in PR #3573 by accidentally removing too much
The examples still compiled fine so I didn't notice - my guess is that
cmake was still adding a separate link to glfw manually.
1 year ago
WIITD
dfb0ca43c5
Update raylib-freebasic binding ( #3591 )
1 year ago
ubkp
0748dc2d1e
Remove a duplicated loop for PLATFORM_DRM ( #3590 )
1 year ago
Peter0x44
55e7d1aad1
Expose OpenGL take 2 ( #3588 )
For some reason, there are actually two macros needed to control this.
Yes, I tried with only one, both are needed
1 year ago
Peter0x44
ef5069862d
Fix mistake in pr #3572 ( #3587 )
1 year ago
Ray
e9ddb15d9d
REVIEWED: rlgl function description and comments
1 year ago
Ray
6b136fac67
ADDED: `ExportMeshAsCode()`
1 year ago
ubkp
e84099bfd4
Fix CheckCollisionCircleRec() ( #3584 )
1 year ago
ubkp
bd81bdc24a
Fix IsKeyPressedRepeat() for PLATFORM_DRM direct input ( #3583 )
1 year ago
Peter0x44
e7a486fa81
Hide unneeded internal symbols when building raylib as an so or dylib ( #3573 )
1 year ago
RadsammyT
fe53ba80dd
Fix typos in src/platforms/rcore_*.c ( #3581 )
1 year ago
ubkp
1906f1eddf
Fix SetMousePosition() for SDL ( #3580 )
1 year ago
ubkp
811abcb19f
Fix rcamera.h so mouse/keyboard and gamepad can coexist for input ( #3579 )
1 year ago
ubkp
c35c531551
Fix SetWindowIcon() for SDL ( #3578 )
1 year ago