summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2021-04-07Fix ImageClearBackground (#1711)Ergoold
- Dividing by height instead of width results in missing parts of the image.
2021-04-06REDESIGNED: Vr stereo modeRay
2021-04-06Reviewed Vr stereoRay
2021-04-06REDESIGNED: Vr stereo renderingRay
2021-04-06added import in order for alloca to work on macos (#1710)Saikyun
2021-04-06Merge branch 'master' of https://github.com/raysan5/raylibRay
2021-04-06Corrected issue on RPIRay
2021-04-06Minimum number of segments in circle sector functions changed from ↵frithrah
hard-coded to based on degree range. (#1707) Co-authored-by: Simon <[email protected]>
2021-04-06Reorganized shaders functionsRay
2021-04-06Minor comment tweaksRay
2021-04-06Update miniaudio.hRay
2021-04-06REVIEWED: Some rlgl cleaning on unused typesRay
2021-04-05Added security check to avoid internal render batch overflowraysan5
2021-04-05Merge branch 'master' of https://github.com/raysan5/raylibraysan5
2021-04-05REVIEWED: Model scale #1700raysan5
2021-04-05Update to the xm player routine and support functionalities (#1701)m4ntr0n1c
* Update jar_xm.h Major bug fixes and refactoring * Update jar_xm.h update to version 0.31
2021-04-05Update version to raylib 3.7raysan5
2021-04-05Reorganized functions by moduleraysan5
2021-04-05REVIEWED: rlLoadShaderDefault()raysan5
Operate over global variable
2021-04-04Update rlgl.hraysan5
2021-04-04Merge branch 'master' of https://github.com/raysan5/raylibraysan5
2021-04-04REDESIGNED: Shapes texture/rec moved to shapes moduleraysan5
2021-04-03Make SaveFile* callbacks return a boolean (#1697)Rob Loach
2021-04-02ADDED: GenMeshDefault() #1556raysan5
2021-04-02REDESIGN: Move GenTexture*() functions to PBR example #721raysan5
Removed functions from rlgl module.
2021-04-02REVIEWED: GenTexture*() functions #721raysan5
Avoid RLGL data dependency to allow moving the functions somewhere else
2021-04-02REVIEWED: ToggleFullscreen() on web #1241raysan5
After some investigation, I came to the conclusion it's impossible to get a solution that works for all situations. Fullscreen mode on web depends on the browser, the canvas and also the desired scaling strategy of the user. Just choose a solution that fits me needs for now and let the user manage the canvas on their webs (hopefully not requiring ToggleFullscreen() call). Also removed several useless related callbacks.
2021-04-02Review compress/decompress logsraysan5
2021-04-02Remove old flagraysan5
2021-04-02Update Makefileraysan5
2021-04-01Review libc dependencyraysan5
2021-04-01Remove trailing spacesraysan5
2021-04-01Review commentsraysan5
2021-03-31ADDED: Support model normal matrix location #1691raysan5
2021-03-31Review formattingraysan5
2021-03-31REVIEWED: DrawMeshInstanced() matrix computationsraysan5
Simplified some parts and reviewed for a correct computation of matrices, considering stereo render view/projection per eye transformations
2021-03-31REVIEWED: Define instancing API entry points for RPIraysan5
2021-03-31REVIEWED: CheckCollisionPointLine()raysan5
Use fabsf() instead of abs()
2021-03-31RENAMED: example: shaders_mesh_instancingraysan5
shaders_rlgl_mesh_instanced -> shaders_mesh_instancing
2021-03-31Review code formattingraysan5
2021-03-31[shapes] CheckCollisionPointTriangle (fix), CheckCollisionPointLine (new ↵mkupiec1
routine) (#1695) * CheckCollisionPointTriangle * New feature proposal to existing collision detection routines. It checks if point [point] belongs to line created between two points [p1] and [p2] with defined margin in pixels[threshold]. 1693
2021-03-31REVIEWED: RPI instancing checks #1679raysan5
2021-03-28Review matrix multiplicationraysan5
2021-03-28REVIEWED: rlgl: Stereo render is working againraysan5
As a bonus, stereo render is compatible with mesh instancing now!
2021-03-28REVIEWED: tinyobjloader #1568raysan5
2021-03-28ADDED: LoadShaderFromMemory() #1690raysan5
2021-03-28REVIEWED: DrawTexturePoly()raysan5
2021-03-27GetCollisionRayMesh makes use of triangle count (#1688)Carlos Hernandez Barbera
Co-authored-by: Carlos Hernandez Barbera <[email protected]>
2021-03-27Fixing pointer arithmetic to avoid error [-Werror=pointer-arith] (#1685)Maksymilian Mika
2021-03-26Preserve floating point values in DrawRectangleLinesEx (#1683)Dan Bechard