summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2022-06-06WARNING: RENAMED: `GetDirectoryFiles()` to `LoadDirectoryFiles()`Ray
RENAMED: `ClearDirectoryFiles()` to `UnloadDirectoryFiles()`
2022-06-06Reviewed latest PR, variable nameRay
2022-06-06Change WaitTime argument from milliseconds to seconds (#2506)flashback-fx
2022-06-06WARNING: REMOVED `raygui` from `raylib/src/extras`Ray
2022-06-06WARNING: Removed `physac` from raylib sources/examplesRay
`physac` is available on its own repo
2022-06-05REVIEWED: Mouse device support on `PLATFORM_DRM` #2381Ray
2022-06-05Fix regression that was causing video stuttering (#2503)flashback-fx
2022-06-02Minor tweakRay
2022-06-02Update text_draw_3d.cRay
2022-05-31Merge branch 'master' of https://github.com/raysan5/raylibRay
2022-05-31REVIEWED: Batch limits check #2489Ray
2022-05-31chore: Set permissions for GitHub actions (#2496)Naveen
Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Signed-off-by: naveen <[email protected]>
2022-05-30REVIEWED: `DrawBillboardPro()` #2494Ray
2022-05-29Correct typoRay
2022-05-29Review log messagesRay
2022-05-20ADDED: `-latomic` linkage, required by `miniaudio` on ARM 32bit #2452Ray
2022-05-20use GetWindowScaleDPI to calculate size for rlReadScreenPixels in ↵gulrak
screenshot/recording (#2446)
2022-05-20Fixed Android CMake build error (#2486)Patrick
`android_native_app_glue.c` wasn't appended to the `raylib_sources` as other libraries were. Co-authored-by: Patrick Martin <[email protected]>
2022-05-19Improved boolean definitions (#2485)Jonathan Poncelet
2022-05-19Update `raylib-jai` bindingRay
2022-05-19generate compile_commands.json to be used by language server (#2481)Angga Permana
* cmake: Generate compile commands * Update README.md simplify build process
2022-05-18Revert "UPDATE: `DEFLATE` algorithm"Ray
This reverts commit d786af83fc0364e6a773254a9ebc8cc7f1e621d1.
2022-05-18UPDATE: `DEFLATE` algorithmRay
2022-05-16REVIEWED: Support OpneBSD for timming functionsRay
2022-05-14Fix lgtm warnings (#2477)Crydsch
* Comparison is always true because finalSample >= 1 * Comparison is always false because keyCount >= 0
2022-05-12ADDED: `EnableEventWaiting()` / `DisableEventWaiting()`Ray
Events waiting can be enabled/disabled, it toggles event polling.
2022-05-12Some minor tweaksRay
2022-05-12Fix crash with delay demo. (#2472)ptarabbia
2022-05-12Easings: Add function descriptions (#2471)Rob Loach
2022-05-09remove fps requirement for drm connector selection (#2468)Crydsch
2022-05-07Corrected typoRay
2022-05-06Add support for calculated defines to parser (#2463)lazaray
* Add support for calculated defines to parser * Regenerate parser output
2022-05-06Add support for truncating parser input (#2464)lazaray
* Add support for truncating parser input * Remove RLAPI from implementations in rlgl.h
2022-05-06Flush stdout after trace messages (#2465)Daniel Nagy
This immediately shows log messages when stdout is not connected to a tty.
2022-05-06Update Note About Factor's Raylib Bindings (#2466)Capital-EX
Factor's bindings have been moved into the main repo. Additionally, they have been updated to 4.0.
2022-05-06Update utils.cRay
2022-05-06ADDED: `ExportDataAsCode()`Ray
2022-05-05Remove line ending spacesRay
2022-05-04Reorder parser (#2462)lazaray
* Reorder parser output * Regenerate parser output * Reorder parser line reading * Reorder parser data parsing * Reorder remaining parser stuff
2022-05-04Parser improvements (#2461)lazaray
* Fix parser function description detection Some functions in easings.h are defined on a single line and include a division which was mistaken for the start of the description. * Fix parser detection of macros including spaces * Add support for self-referencing structs to parser * Fix parser code style * Fix parser handling of multiple fields on one line * Increase parser MAX_STRUCT_FIELDS For internal rlglData State struct (internal structs are still not supported but this makes it less wrong). * Add description helper to parser * Regenerate parser output * Add cakkbacks to parser * Regenerate parser output * Refactor funcLines to be an array of line numbers It used to be an array of pointers into the text buffer but was changed to be an array of pointers to the lines. Now it is an array of line numbers like the others. * Fix code style * Move array size from name to type * Regenerate parser output
2022-05-01Add racket-raylib to BINDINGS.md (#2454)Benedek Szilvasy
2022-05-01Add aliases to parser (#2444)lazaray
* Fix parser indentation * Fix parser comments * Add aliases to parser * Regenerate parser output * Fix parser handling of multiple fields on one line * Regenerate parser output * Fix parser code style
2022-05-01Reviewed some commentsRay
2022-04-29Update raylib.hRay
2022-04-28Update rcore.cRay
2022-04-28Update raylib haxe binding name (#2451)Ratul Krisna
As title says
2022-04-28add raylib.zig bindings (#2449)Michael Scherbakow
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.