summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2022-08-02Update cgltf.hRay
2022-08-02Update miniaudio.hRay
2022-08-02REMOVED: rmem library from raylib sourcesRay
Moved to own repo: https://github.com/raylib-extras/rmem
2022-08-02Update rlgl.hRay
2022-08-02Remove `easings.h` from raylib/src, moved to examplesRay
2022-08-02REVIEWED: `GetMouseWheelMove()`, avoid move scaling on `PLATFORM_WEB`Ray
Tested with latest emscripten 3.1.18
2022-08-02Updated raylib resource data (32bit)Ray
2022-08-02minor tweaksRay
2022-08-02Added note for multi-threading web compilationRay
2022-08-02Update versionRay
2022-08-02Update version to 4.2Ray
2022-08-02Update version to raylib 4.2Ray
2022-08-02Remove trailing spacesRay
2022-08-01Music doesn't stop looping fix (#2605)veins1
This PR fixes a bug when music.looping is set to false but the music continues looping. Also using proper functions to seek to start of an audio file. Removed old comment.
2022-08-01Avoid cleaning the front buffer to a specific color!Ray
ISSUE: Front buffer and backbuffer have different clear colors, if no `ClearBackground()` is called by user, there is screen flickering on buffers swap. It's up to the user to call `ClearBackground()` if desired
2022-08-01Merge branch 'master' of https://github.com/raysan5/raylibRay
2022-08-01REMOVED: Config option: `SUPPORT_MOUSE_CURSOR_POINT`Ray
2022-07-31Use American spelling of colourSpace (#2604)BlueStag
2022-07-29Audio looping fix (#2579)veins1
* WAVs looping fix. But broke other formats looping * Fix audio looping issue * Follow raylib formatting * Cast void* to char* to make MSVC compiler happy Co-authored-by: Ray <[email protected]>
2022-07-29Merge branch 'master' of https://github.com/raysan5/raylibRay
2022-07-29REVIEWED: `GenImageFontAtlas()` #2556Ray
Just reviewed font atlas size estimation, now it considers `fontSize` instead of `chars[i].image.height`, increasing considerably the atlas size estimation.
2022-07-29[raymath] Rotation functions returns clockwise rotation matrix, #2595 (#2599)Nikolay Krasheninnikov
Co-authored-by: Nikolai Krasheninnikov <[email protected]>
2022-07-29Some camera improvements #2563Ray
Reviewed some camera functionality: - Reviewed camera swinging (up-down movement) - Reviewed camera tilting (left-right movement) - Make movement independent of frame-rate - removed unneeded variables NOTE: Camera rotation has some speed issues on first person when fixed 60 fps are used: it moves too fast. Independent framerate movement is not properly implemented.
2022-07-29Review comments and parameter namesRay
2022-07-27rtextures: Improve numerical stability of float multiplication (#2596)Piotr Wierciński
Dimensions of Rectangle should be casted to int before multiplication, otherwise there is a risk for underallocation/overallocation of memory.
2022-07-26rtextures: Fix ImageFromImage crash (#2594)Piotr Wierciński
Height of the rectangle can be float, which may lead to doing extra iteration of loop and writing out of bounds.
2022-07-26add Vector3RotateByAxisAngle (#2590)Crydsch
2022-07-26fix QuaternionFromMatrix & QuaternionEquals (#2591)hitomi kirigri
Co-authored-by: kirigiri hitomi <[email protected]>
2022-07-25Update yearRay
2022-07-25Update config.hRay
2022-07-23fixed build for cygwin (#2588)Julianiolo
2022-07-20Fix Vector3ClampValue and Vector2ClampValue (#2585)George Linkovsky
Co-authored-by: Timofffee <[email protected]>
2022-07-19[CORE] Fix Warnings (#2582)Jeffery Myers
* Fix raymath warning with floor to floorf * signed unsigned missmatches
2022-07-15Removed raudio.h from public headerRay
2022-07-15Update raudio.cRay
2022-07-15WARNING: REMOVED: raudio_standalone exampleRay
Moved to raudio library repo: https://github.com/raysan5/raudio
2022-07-15Added noteRay
2022-07-11REVIEWED: `UpdateMusicStream()` #2228Ray
Trying to implement proper looping, independently of frame rate.
2022-07-11Minor tweaksRay
2022-07-10Update raudio.cRay
2022-07-10Added comment about buffer refill issue on looping #2228Ray
2022-07-10Reviewed formatingRay
2022-07-10REVIEWED: `ImageResize()` #2572Ray
2022-07-09Remove unneded TABSRay
2022-07-09Allow DLL creation using TCC (#2569)Audi Nugraha
* Fix Undefined Symbol `_ftelli64` * Add files via upload * Update raylib.h * Update raylib.h
2022-07-08Fix fat universal (arm64 + x86_64) macos Github Actions build (#2567)Richard Smith
* test if clang supports multiple targets * didnt work, so trying lipo to join separate targets together * add CUSTOM_LDFLAGS to try to fix arm64 mac dynamic build * fix sym links * try again to fix sym links * auto extract raylib version numbers from makefile * fix macos missing gnu grep * dont use custom name for raylib dlls
2022-07-05Update raylib.hRay
2022-07-05WARNING: BREAKING: REMOVED: `*StorageValue()` functionsRay
Those functions were platform dependent and user has no control over the file created. They have been removed from raylib and just moved to `core_storage_values` example.
2022-07-05REMOVED: `GenMeshBinormals()`, actually, never implementedRay
2022-07-05Added some commentsRay