summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2024-01-22fixed small typo, replaced `th` with `the` (#3752)Brian E
2024-01-22fix CheckCollisionPointPoly (#3750)Antonio Raúl
2024-01-22Fix typo in HISTORY.md (#3751)Idir Carlos Aliane
There is a typo where 'undoubtdly' appears instead of 'undoubtedly'.
2024-01-20Fix Android keycode translation and duplicate key constants (#3733)Alexandre Almeida
* 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>
2024-01-20[rcore rglfw] Feature Test Macros before include (#3737)John
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 <[email protected]>
2024-01-20Make raylib/raygui work better on touchscreen (#3728)Hongyu Ouyang
* Fix that touch doesn't work for click/drag/raygui * Add comments * comments update
2024-01-18Update BINDINGS.md (#3739)Anand Swaroop
2024-01-15REVIEWED: `ImageKernelConvolution()`, formating and warningsRay
2024-01-14Fix bounds check for `ImageDrawRectangleRec` (#3732)Blockguy24
2024-01-13Update OCaml bindings version (#3730)Tobias Mock
2024-01-13Avoid asserts because could crash some decompressions ↵Ray
https://github.com/raysan5/raygui/issues/364
2024-01-13Simplified GetWindowScaleDPI() so it does not fetch the wrong DPI scale some ↵Karl Zylinski
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)
2024-01-13Add shared library build option for build.zig and update to zig ↵Andrew Lee
0.12.0-dev.2139 (#3727) * update build.zig to 0.12.0-dev.2139 and add shared lib option * add no-sanitize workarounds
2024-01-11Enable animation names for the m3d model format. (#3714)kolunmi
2024-01-11Update to latest zig 0.12.0dev while keeping 0.11.0 compatibility (#3715)freakmangd
* 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
2024-01-11implemented fill color TODO in ImageResizeCanvas() (#3720)Lieven Petersen
2024-01-11Fix `ImageDrawRectangleRec` (#3721)Le Juez Victor
2024-01-11Update a comment (#3724)Hongyu Ouyang
2024-01-10[rtext] Adjust font atlas area calculation so padding area is not ↵Tim Romero
underestimated at small font sizes. (#3719)
2024-01-08Update codeql.yml: Exclude src/external filesRay
2024-01-06Simplified for loop for some image manip functions (#3712)Alice Nyaa
2024-01-06Fix a bug in examples/shapes/shapes_following_eyes (#3710)Hongyu Ouyang
2024-01-05Reviewed Makefile SDL2 expected include/lib paths #3705Ray
2024-01-05REVIEWED: `LoadImageAnimFromMemory()` #3704Ray
2024-01-05Merge branch 'master' of https://github.com/raysan5/raylibRay
2024-01-05Update raudio.cRay
2024-01-05Update raygui.hRay
2024-01-05Hide unused warnings from stb_image_resize2.h (#3708)ubkp
2024-01-04Update raylib.zig version to 5.1-dev (#3698)Michael Scherbakow
2024-01-03Update copyright year to 2024Ray
2024-01-02Update copyright to 2024Ray
2023-12-31Update raylib_api.* by CI (#3692)seiren
* wip: add parse.yml * Temporarily force run * Auto commit parse files * Update raylib_api.* by CI * Remove temporary setting * format --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-12-29Update BINDINGS.md (#3689)Kenta
Update Raylib.c3 to 5.0
2023-12-28Revert "Update raylib.h"Ray
This reverts commit 7ea6adb29eaf39e18c6faa4d7d6d9bd8a9d60910.
2023-12-28Merge branch 'master' of https://github.com/raysan5/raylibRay
2023-12-28[rtextures] Fix `LoadImageAnimFromMemory()` warning for `fileData` (#3686)ubkp
* Fix LoadImageAnimFromMemory() warning for fileData * Add LoadImageAnimFromMemory() to raylib.h * Fix missing ; on previous commit
2023-12-28Fix TextReplace warning for const (#3687)ubkp
2023-12-28Update raylib.hRay
2023-12-28LoadImageAnimFromMemory (#3681)IoIxD
2023-12-28TextReplace const correctness (#3678)maverikou
* TextReplace const correctness * cleanup
2023-12-28Fix SUPPORT_WINMM_HIGHRES_TIMER for PLATFORM_DESKTOP_SDL (#3679)ubkp
2023-12-28[ fix-crash-caused-by-zig-build ] - Fixed 'Illegal instruction' crash on ↵WisonYe
'rtextures' and 'raudio' model that caused by zig build. (#3682)
2023-12-28[rshapes] Expose shapes drawing texture and rectangle (#3677)Jeffery Myers
* provide access to the shape texture so that shapes can be extended outside of raylib with the same optimizations as internal raylib functions. * PR feedback, comply with C standards * oops
2023-12-25Update some versions BINDINGS.mdRay
2023-12-25Update BINDINGS.md (#3672)iacore
Update zig libs version
2023-12-23Update shaders_basic_pbr.cRay
2023-12-23Review formatingRay
2023-12-23Update shaders_basic_pbr.cRay
2023-12-23Review UnloadAutomationEventList (#3658)Antonis Geralis
* Review UnloadAutomationEventList * Update raylib.h * Update rcore.c * Update core_automation_events.c * Fix mistake
2023-12-23REVIEWED: SDL text input to Unicode codepoints #3650Ray
REVIEWED: GLFW naming conventions to reflect codepoints reading