summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2022-04-29Update raylib.hRay
2022-04-28Update rcore.cRay
2022-04-26Fix Issue #2441 (#2442)Leonardo Montagner
Remove line that caused a memory leak
2022-04-26Check for mouse devices on PLATFORM_DRMRay
2022-04-25REVIEWED: `SwapScreenBuffers()` for `PLATFORM_DRM`Ray
Avoid calling `abort()`, `LOG_ERROR` already manages it. Code looks cleaner now.
2022-04-25Update rlgl.hRay
2022-04-25Update rcore.cRay
2022-04-24Review formattingRay
2022-04-24- Fix issue #2371 (#2437)Juan Carlos González Amestoy
2022-04-24REDESIGNED: Set rlgl internal framebuffer #2420Ray
2022-04-24Update rlgl.hRay
2022-04-24Update rlgl.hRay
2022-04-24Fix for vr rendering not taking render target size into account (#2424)Maiko Steeman
2022-04-24Reviewed MouseScrollCallback() #2371Ray
2022-04-24Initialize (reset) input global state #2360Ray
2022-04-24Removed bool type from raymath, it broke raylibRay
2022-04-24Update rlgl.hRay
2022-04-23REVIEWED: ToggleFullscreen()Ray
2022-04-23Update raymath.hRay
2022-04-23Review new functions formattingRay
2022-04-23Augment raymath.h with useful functions (#2428)saccharineboi
* Augment raymath.h with useful functions * Rename Vector2ClampMagnitude and Vector3ClampMagnitude to Vector2ClampValue and Vector3ClampValue * Remove Vector3{Up,Down,Left,Right,Forward,Backward}
2022-04-23Optimize Some Image Functions. (#2429)Anilforextra
2022-04-06WARNING: RENAMED: some parameters from length to sizeRay
When referring to byte array SIZE, I find it more clear than length
2022-03-30ADDED: Audio stream processors support -WIP- #2212Ray
This feature is still under consideration/testing and it doesn't work properly, at least the Delay Effect processor.
2022-03-30WARNING: BREAKING: REMOVED: `GetRayCollisionModel()` #2405Ray
2022-03-30Fix QuaternionScale (#2419)Satoshi Tanaka
2022-03-29Update rtext.cRay
2022-03-28Merge branch 'master' of https://github.com/raysan5/raylibRay
2022-03-28REMOVED: `MatrixNormalize()` #2412Ray
2022-03-26Corrected typoRay
2022-03-25Corrected typoRay
2022-03-25Rename audio callbackRay
2022-03-24ADDED: Audio stream input callback #2212 -WIP-Ray
WARNING: This addition is based on a PR and it's still under review, not sure if it will be maintained in the future. In general, raylib tries to avoid callbacks usage mechanisms.
2022-03-24Some code reviews -WIP-Ray
2022-03-24Update to miniaudio 11.8Ray
2022-03-22Minor tweaks `const`Ray
2022-03-20REVIEWED: Avoid some float -> double promotionsRay
2022-03-19Verify there is enough space in the batch for the npatch geometry. (#2401)Jeffery Myers
2022-03-18Fix too many opening parens in src/rtextures.c (#2398)João Távora
This is a tiny change that makes code in src/rtextures.c "fold" correctly in editors/IDE's by matching the number of opening parenthesis to closing parenthesis. One of those editors is Emacs ;-)
2022-03-18Implements OpenURL() for Android Platform (#2396)Rodrigo Escar
2022-03-14REVIEWED: `OpenURL()`Ray
2022-03-12Fixed an issue in Makefile when using raygui and physac on unix systems (#2384)tixvage
* Fixed an issue when using raygui and physac on unix systems hash "#" is single-line comment character in bash so echo ignores #include and #define * tab fix
2022-03-12Remove spaceRay
2022-03-11Simplify build.zig to not require user to specify raylib path (#2383)Komari Spaghetti
We can figure out the source file location based on the location of the build.zig file. No need to require the library user to specify where raylib is stored.
2022-03-09Vector2/Vector3: Add squared distance. (#2376)Anilforextra
2022-03-01Increase atlas size guesstimate; print warnings if atlas size is too small ↵megagrump
(#2365)
2022-02-27Removed memset()Ray
2022-02-25Possible fix for #2360Ray
2022-02-20Support clipboard copy/paste on webRay
2022-02-20REVIEWED: Some functions input parametes that should be `const`raysan5