summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2024-07-17added brainfuck bindingsHEADmasterrealtradam
2024-07-16Removes the redundant USE_AUDIO flag (#4158)Lázaro Albuquerque
2024-07-16Update BINDINGS.md: dray binding supports raylib 5.0 (#4163)red thing
2024-07-16Adding GetKeyName(int key) (WIP) (#4161)MrScautHD
2024-07-13Fix crash when switching playback device (#4102)jkaup
Co-authored-by: jj <[email protected]>
2024-07-11Replace `glGetInteger64v` with `glGetBufferParameteri64v` (#4154)Kai Kitagawa-Jones
2024-07-11[build.zig] GLFW Platform Detection Support (#4150)InventorXtreme
* Zig Both Linux Desktop Platform Support * Formating and Default Fix Made formating fit within raylib standards and changed the default option to support both X11 and wayland on Linux. * caught one hiding tab
2024-07-09[Shapes] Remove duplicate color calls in DrawGrid (#4148)Jeffery Myers
* Update raylib_api.* by CI * No need to call the color 4 times in a row, it's batched --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-07-09`WindowSizeCallback()` should not try to handle DPI since already managed by ↵SuperUserNameMan
GLFW (#4143) If `FLAG_WINDOW_HIGHDPI` is set, `InitPlatform()` will aks GLFW to handle resize window content area based on the monitor content scale using : ` glfwWindowHint(GLFW_SCALE_TO_MONITOR, GLFW_TRUE); ` So `WindowSizeCallback()` does not have to handle it a second time.
2024-07-09REVIEWED: Code formatting to follow raylib conventionsRay
2024-07-09update RGFW to RGFW 1.0 (#4144)Colleague Riley
* update RGFW * fix bug with GetCurrentMonitor
2024-07-08Minor tweaksRay
2024-07-08Add workaround for NetBSD (#4139)NishiOwO
2024-07-07Update models_billboard.cRay
2024-07-07Merge branch 'master' of https://github.com/raysan5/raylibRay
2024-07-07Update rmodels.cRay
2024-07-07Update raylib_api.* by CIgithub-actions[bot]
2024-07-07REVIEWED: Direction must be normalized #4131Ray
2024-07-07[rmodels] Consistent `DrawBillboardPro` with `DrawTexturePro` (#4132)bohonghuang
* [rmodels] Re-implement `DrawBillboardPro` * [rmodels] Add comments to `DrawBillboardPro` * [rmodels] Make `DrawBillboardPro` consistent with `DrawTexturePro` * Update raylib_api.* by CI --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-07-07Fix Reddit badge (#4136)Ninad Sachania
2024-07-07REVIEWED: `CheckCollisionPointRec()`Ray
2024-07-07[rshapes] Give CheckCollisionPointCircle() its own implementation (#4135)kai-z99
* remove function call * fix
2024-07-04Update rlgl.hRay
2024-07-04Example reviewRay
2024-07-04Change SDL_Joystick to SDL_GameController (#4129)Frank Kartheuser
With SDL_Joystick my game controller wasn't working properly. That's why I changed it to SDL_GameController.
2024-07-01[CORE] Fix MSVC warnings/errors and raymath.h in C++ (#4125)Jeffery Myers
* Update raylib_api.* by CI * Fix MSVC warnings. Make raymath.h work in C++ in MSVC * whitespace cleanup --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-07-01Update MakefileRay
2024-07-01Merge branch 'master' of https://github.com/raysan5/raylibRay
2024-07-01Update MakefileRay
2024-07-01Update raylib_api.* by CIgithub-actions[bot]
2024-07-01Merge branch 'master' of https://github.com/raysan5/raylibRay
2024-07-01WARNING: UPDATE: Starting works on `raylib 5.5` releaseRay
2024-07-01Update raylib_api.* by CIgithub-actions[bot]
2024-07-01Reverted memory allocators additional checksRay
2024-07-01WARNING: BREAKING: Renamed `PLATFORM_DESKTOP` to `PLATFORM_DESKTOP_GLFW`Ray
This could potentially be a breaking change, for consistency, now every possible desktop backend has the proper name assigned: GLFW, SDL, RGFW raylib build system has been reviewed to fallback to `PLATFORM_DESKTOP_GLFW` by default when `PLATFORM_DESKTOP` defined
2024-07-01Update raylib_api.* by CIgithub-actions[bot]
2024-07-01WARNING: TEST: Security check to address potential overflow cocernsRay
2024-07-01Merge branch 'master' of https://github.com/raysan5/raylibRay
2024-07-01Minor tweaksRay
2024-07-01[rtextures] advance k in LoadImageColors (#4120)Bruno Cabral
Some formats are not advancing k to get pixels values
2024-07-01[build.zig] Make emscripten build compatible with Zig 0.13.0 (#4121)Mike Will
2024-07-01Update Storage base path, use provided SDL base pathRay
2024-06-30Update raylib_api.* by CIgithub-actions[bot]
2024-06-30REVIEWED: Formatting, follow raylib coding conventionsRay
2024-06-30REVIEWED: `DrawSphereEx()`, added educational infoRay
2024-06-30[rmodels] `DrawSphereEx()` optimization (#4106)smalltimewizard
* Optimize DrawSphereEx() Precalculates sin/cos to eliminate unnecessary calls. * Formatting correction to previous commit * Bugfix to optimized DrawSphereEx() OBO error -- added 1 additional precalculated cos/sin value to each array to complete the 360-degree wraparound. Technically the value of these last elements will always be the same as the first element due to 360-degree wraparound, but this is the simplest solution. * Corrected missing free() * Formatting correction * New DrawSphereEx() algorithm
2024-06-30Update raylib_api.* by CIgithub-actions[bot]
2024-06-30REVIEWED: Formatting, follow raylib coding conventionsRay
2024-06-30Update raylib_api.* by CIgithub-actions[bot]
2024-06-30[rtextures] Created `ImageFromChannel()` (#4105)Bruno Cabral
* created ImageFromChannel Adds the possibility to extract a specific channel from an image * naming convention * example window height * removed threshold * removed alpha channel * channel example organization * updated channel example image