summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2024-06-11Fix fragPosition using wrong matrix in lighting_instancing.vs (#4056)Karl Zylinski
fragPosition was multiplied by mvp*instanceTransform, but it should only be multiplied by instanceTransform. Compare to lighting.vs, there we only use mvp for gl_Position, but matModel for the fragPosition.
2024-06-11[SHAPES] Make functions that draw point arrays take them as const (#4051)Jeffery Myers
* Update raylib_api.* by CI * make functions that take a pointer to an array take them as const pointers * Update raylib_api.* by CI * fix comment alignment. --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-06-11LoadBoneInfoGLTF add check for animation name being NULL (#4053)VitoTringolo
Co-authored-by: Vito Tringolo <[email protected]>
2024-06-10Update Makefile (#4054)Lázaro Albuquerque
Since the flag CUSTOM_CFLAGS should allow users customize things, in particular the optimization level, I figured it should come after other default ones. Based on: "If you use multiple -O options, with or without level numbers, the last such option is the one that is effective." Source: https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html
2024-06-09Removed Raylib.NET (#4050)MrScautHD
2024-06-09Make addRaylib use options.opengl_version (#4049)carverdamien
2024-06-09tweaksRay
2024-06-09REVIEWED: Animation name being NULL #4037Ray
2024-06-08Update RGFW (#4048)Colleague Riley
* Fix Makefile issues (RGFW) (linux) (macOS) * Do not use nanosleep on windows at all (PLATFORM_DESKTOP_RGFW) * remove #define RGFWDEF and make the #undefs only happen for their OS * Update RGFW.h * fix to match the RGFW updates * remove line that shows the cursor for no reason
2024-06-07fix: infer CMAKE_MODULE_PATH in super-build (#4042)fruzitent
2024-06-07The example always showed a xbox controller, never a ps3 controller (#4040)Konrad Gutvik Grande
2024-06-06[rlgl] Rename near, far variables (#4039)jgabaut
2024-06-06Fix examples not building with gestures system disabled (#4020)Sprix
Build no longer fails with -DSUPPORT_GESTURES_SYSTEM=OFF and -DBUILD_EXAMPLES=ON
2024-06-06RENAME: near, far vaiablesRay
2024-06-04Update rcore_desktop.cRay
2024-06-04Fix #4024, cylinder drawing was incorrect due to imprecise angle (#4034)Paul Melis
* Fix #4024, cylinder drawing was incorrect due to imprecise angle stepping (mostly noticeable with semi-transparent cylinders) * Fix var name and spacing
2024-06-03rtext: added functions for camel case and snake case (reopened due to ↵IoIxD
formatting errors) (#4033) * rtext: added functions for camel case and snake case * Update raylib_api.* by CI * rtext: removed always false comparison --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-06-03LoadIQM: attempt to load texture from IQM at loadtime. (#4029)Jett
tries to load the texture with the base path of the original IQM file, relative paths should work.
2024-06-03 Update Raylib-CSharp to `5.1-dev`. (#4030)MrScautHD
* Update BINDINGS.md * Update BINDINGS.md * Update BINDINGS.md
2024-06-02[rmodels] Send full matModel to shader in DrawMesh (#4005) (#4022)David Holland
2024-06-02LoadModelAnimationsIQM: fix corrupted animation names (#4026)Jett
Correctly copies animation names from IQM animation to raylib animation.
2024-05-30Update raylib_api.* by CIgithub-actions[bot]
2024-05-30[rshapes]Circle line collision function (#4018)kai-z99
* inital function * working 1 * optimize * optimized dot product * simplify * cleanup * cleanup * cleanup * comment * var name change * epsilon
2024-05-30Fix typos in markdowns and comments, Fix invalid links in HISTORY.md (#4017)vaezim
2024-05-29review color tint functions (#4015)Le Juez Victor
2024-05-29Update raylib.hRay
2024-05-29REVIEWED: `ExportFontAsCode()`, avoid `const` #4013Ray
2024-05-29[rtext] Added cast to ExportFontAsCode output to fix C++ compiler errors (#4013)DarkAssassin23
2024-05-29[build.zig] Fix Zig emscripten build (#4012)Dylan
* Fix for issue #4010 Split the code for Zig's master branch and >= 0.12.0 due to changes in https://github.com/ziglang/zig/pull/19623 * Restore the cache_include path which was removed in error Accidently removed a couple lines I didn't mean to 🙈
2024-05-29Update raylib_api.* by CIgithub-actions[bot]
2024-05-29ADDED: `IsFileNameValid()`Ray
2024-05-29[rmodels] Multiplication of colors in `DrawModelEx` which can be simplified ↵Le Juez Victor
(#4002) * simplifies color multiplication `DrawModelEx` * add explicit casts
2024-05-29[parser] MemoryCopy() calls: Prevent buffer overflow by replacing hard-coded ↵avx0
arguments (#4011) In future, if a dev edits the second arg and miscalulates the corresponding 3rd arg, there will be a buffer overflow or the string (2nd arg) will be cut short. This commit prevents that.
2024-05-24Update BINDINGS.md (#4004)Lionel Briand
Add L-Briand/raylib-zig-bindings to the Language Bindings table
2024-05-24fix WaveCrop(): update wave->frameCount (#4003)listeria
also allow `finalFrame = wave->frameCount' as the range of frames does not include it. Co-authored-by: Listeria monocytogenes <[email protected]>
2024-05-21nim bindings are in 5.1-dev, remove umaintained repos (#3999)Antonis Geralis
* nim bindings are in 5.1-dev, remove umaintained repos * Update BINDINGS.md * move to umaintained * Update BINDINGS.md * github editor is pranking me
2024-05-21Update rcore_desktop_sdl.cRay
2024-05-21REVIEWED: `ColorToInt()` PRRay
2024-05-21Call SDL_GL_SetSwapInterval() after GL context creation (#3997)JupiterRider
2024-05-21[rtextures] Fix Undefined behaviour in ColorToInt (#3996)OetkenPurveyorOfCode
2024-05-21fixed out of bounds error in GenMeshTangents (#3990)Salvador Galindo
2024-05-21Update BINDINGS.mdRay
2024-05-21Update BINDINGS.md (#3995)Carmine Pietroluongo
2024-05-21BINDINGS.md: raylib-rs now at 5.0 (#3991)IoIxD
2024-05-21Update raylib_api.* by CIgithub-actions[bot]
2024-05-21fix WaveCrop() and use frames instead of samples (#3994)listeria
Co-authored-by: Listeria monocytogenes <[email protected]>
2024-05-18REVIEWED: LoadBMFont(), issue on not glyph data initializedRay
2024-05-18Update config.hRay
2024-05-16[raudio] Removed drwav_uninit in LoadMusicStream to fix a crash (#3986)FishingHacks
2024-05-16[rcore_web] Relative mouse mode issues. (#3940)Cemal Gönültaş
* [rcore_web] Relative mouse mode issues. * Review formatting.