Ray
80580746e5
Reorder functions
10 months ago
Ray
d34956b197
Merge branch 'master' of https://github.com/raysan5/raylib
10 months ago
Ray
c31559101a
REVIEWED: `rlLoadFramebuffer()`, parameters not required
10 months ago
github-actions[bot]
250d89b621
Update raylib_api.* by CI
10 months ago
Luís Almeida
9a5dddc311
Added viewport independent raycast ( #3709 )
* added viewport independent raycast
* Renamed GetMouseRayEx to GetViewRay
10 months ago
Ray
f033b30703
Review formating and some defines naming consistency
10 months ago
oblerion
d91e9104aa
[rcore] Fix `GetFileNameWithoutExt()` ( #3771 )
* Update rcore.c
fix [rcore] GetFileNameWithoutExt
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
10 months ago
A
a96b224b38
Add gamepad support to PLATFORM_DESKTOP_SDL ( #3776 )
Co-authored-by: Arthur <hi@thenightwat.ch>
10 months ago
Ray
868d515fbc
Update rtext.c
10 months ago
Ray
eed56a45d6
REVIEWED: `LoadFontDataBDF()` name and formating
10 months ago
Stanley Fuller
0932cd3059
[rtext] Add BDF font support ( #3735 )
* Add BDF font support
* Include font ascent in glyph y-offset when loading BDF font
10 months ago
Brandon Baker
29ff658d92
Update BINDINGS.md ( #3774 )
Bump supported raylib version of Raylib-cs to 5.0
10 months ago
IoIxD
7ec43022c1
Fix segfault in ExportWaveAsCode ( #3769 )
`char *txtData = (char *)RL_CALLOC(waveDataSize * 6 + 2000, sizeof(char));`
assumes every chunk being added to txtData is 6 bytes. This is not always true, sometimes a newline is involved and the data becomes 12 bytes instead, and this can cause a random segfault.
This commit changes `6` to `12`, and explains why in the comment.
11 months ago
Marrony Neris
c0b081fac0
Fix MeasureTextEx() height calculation ( #3770 )
11 months ago
Ray
25306eae42
REVIEWED: Issue on parsing #3765
11 months ago
Ray
d79828076f
REVIEWED: macOS issues #3767
11 months ago
Ray
deaffb0698
Review PR #3746 formating
11 months ago
Jeffery Myers
bebf9547bd
[CORE,RLGL] Fix scale issues when ending a mode ( #3746 )
* Only restore GL scale back to screen scale if we are returning to a screen, not a render texture.
* blankspace
* reset back to default screen scale when ending a render texture since we are back on the default fbo
11 months ago
Brian E
812645b077
cleaned away unused macros in rcamera.h ( #3762 )
11 months ago
Alessandro Nikolaev
cf10cdd6b3
Added missing "standalone" functions to raudio.c & fixed return bug ( #3760 )
* Added GetFileNameWithoutExt, GetFileName & strprbrk to raudio.c
* Gave return values to SaveFileData & SaveFileText in raudio.c
11 months ago
veins1
f4add5f10d
Fix rlSetUniformSampler ( #3759 )
Fix rlSetUniformSampler not setting sampler uniform if the same texture was already passed to a different sampler uniform
11 months ago
Ray
40f3df5b86
Update core_2d_camera_platformer.c
11 months ago
Victor Gallet
ff1eeafb95
Fix bug to retrieve material specular map in DrawMesh function, with incorrect index ( #3758 )
11 months ago
Idir Carlos Aliane
cb97a8063d
[rtext.c] fixing some comments to align comments style ( #3756 )
11 months ago
Idir Carlos Aliane
6f1c31b25d
Change some minor comments to align with comments style ( #3755 )
11 months ago
Idir Carlos Aliane
c133fee286
[raymath.h] Small code refactor ( #3753 )
* [raymath.h] Small refactor to avoid duplicated code
* Fixing some blank spaces to match same syle convention
11 months ago
Brian E
27645e16ab
fixed small typo, replaced `th` with `the` ( #3752 )
11 months ago
Antonio Raúl
ef92ced370
fix CheckCollisionPointPoly ( #3750 )
11 months ago
Idir Carlos Aliane
68c32a4184
Fix typo in HISTORY.md ( #3751 )
There is a typo where 'undoubtdly' appears instead of 'undoubtedly'.
11 months ago
Alexandre Almeida
5c25913e09
Fix Android keycode translation and duplicate key constants ( #3733 )
* Fix Android keycode translation
* Simplify code a bit
* Rename KEYCODE_MAPPED_NUM to KEYCODE_MAP_SIZE
* Fix KEY_R and KEY_MENU duplicate
* Update raylib_api.* by CI
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
11 months ago
John
192f7f1b29
[rcore rglfw] Feature Test Macros before include ( #3737 )
Move/Add Feature Test Macros before any includes.
See: [GNU Feature Test Macros](https://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html )
> You should define these macros by using ‘#define’ preprocessor directives at the top of your source code files. These directives must come before any #include of a system header file. It is best to make them the very first thing in the file, preceded only by comments.
Alternative changes to rcore would be to change _POSIX_C_SOURCE to
200809L, which removes the need to define _XOPEN_SOURCE >= 500.
These changes allow for compilation with -std=c* (such as -std=c99)
without adding -D macros to the build step.
Co-authored-by: JayLCypher <jaylcypher@github.com>
11 months ago
Hongyu Ouyang
0a8165c0ac
Make raylib/raygui work better on touchscreen ( #3728 )
* Fix that touch doesn't work for click/drag/raygui
* Add comments
* comments update
11 months ago
Anand Swaroop
b600786c52
Update BINDINGS.md ( #3739 )
11 months ago
Ray
c57b8d5a6a
REVIEWED: `ImageKernelConvolution()`, formating and warnings
11 months ago
Blockguy24
d2b1256e5c
Fix bounds check for `ImageDrawRectangleRec` ( #3732 )
11 months ago
Tobias Mock
02133092f8
Update OCaml bindings version ( #3730 )
11 months ago
Ray
cb2572fe07
Avoid asserts because could crash some decompressions https://github.com/raysan5/raygui/issues/364
11 months ago
Karl Zylinski
520c8cffb2
Simplified GetWindowScaleDPI() so it does not fetch the wrong DPI scale some times (Windows looks at center of window while the old raylib code looked on upper left corner of window, now it just uses the glfw function to fetch the window's current scaling). Also introduced a callback to update the CORE.Window.screenScaling when the content scaling updates, previously scaling did not work correctly on systems with multiple monitors that have different DPI scaling. ( #3701 )
11 months ago
Andrew Lee
b7141d556e
Add shared library build option for build.zig and update to zig 0.12.0-dev.2139 ( #3727 )
* update build.zig to 0.12.0-dev.2139 and add shared lib option
* add no-sanitize workarounds
11 months ago
kolunmi
9d628d1d49
Enable animation names for the m3d model format. ( #3714 )
11 months ago
freakmangd
482722d881
Update to latest zig 0.12.0dev while keeping 0.11.0 compatibility ( #3715 )
* update build.zig for latest zig 0.12.0dev while still allowing 0.11.0
* update examples/build.zig and add nicer message for type mismatch
11 months ago
Lieven Petersen
a820c37ab2
implemented fill color TODO in ImageResizeCanvas() ( #3720 )
11 months ago
Le Juez Victor
746f129bfe
Fix `ImageDrawRectangleRec` ( #3721 )
11 months ago
Hongyu Ouyang
64ba5cb570
Update a comment ( #3724 )
11 months ago
Tim Romero
2c124c96df
[rtext] Adjust font atlas area calculation so padding area is not underestimated at small font sizes. ( #3719 )
11 months ago
Ray
be78255bea
Update codeql.yml: Exclude src/external files
11 months ago
Alice Nyaa
be0ea89f83
Simplified for loop for some image manip functions ( #3712 )
11 months ago
Hongyu Ouyang
721e273547
Fix a bug in examples/shapes/shapes_following_eyes ( #3710 )
11 months ago
Ray
a4dc325a0c
Reviewed Makefile SDL2 expected include/lib paths #3705
11 months ago
Ray
b4cb0f3e7d
REVIEWED: `LoadImageAnimFromMemory()` #3704
11 months ago