summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2020-12-25Update windows.ymlRay
2020-12-25Update HISTORY.mdRay
2020-12-25Update README.mdRay
2020-12-25Update HISTORY.mdRay
2020-12-25Update HISTORY.mdRay
2020-12-25Update HISTORY.mdraysan5
2020-12-25Update CHANGELOGraysan5
2020-12-24Update SPONSORS.mdraysan5
2020-12-24Update ROADMAP.mdraysan5
2020-12-24Minor tweakraysan5
2020-12-24Replace TABS by 4 spacesraysan5
2020-12-24Update CHANGELOGRay
2020-12-24Review some RPI4 tracelogsraysan5
2020-12-24Update Makefileraysan5
2020-12-24Review tracelog messages for DRM platformraysan5
2020-12-24Update README.mdraysan5
2020-12-24Update README.mdraysan5
2020-12-24Update README.mdRay
2020-12-24Updated several files while porting examples to webraysan5
2020-12-23Review example formatingraysan5
2020-12-23Review formattingraysan5
2020-12-23Merge branch 'master' of https://github.com/raysan5/raylibraysan5
2020-12-23Remove dup exampleraysan5
2020-12-23Update CHANGELOGRay
2020-12-23Update CHANGELOGRay
2020-12-23Review Android Makefiles to required versionraysan5
2020-12-23Review issues when compiling for Androidraysan5
2020-12-23Update raylib functions parser to generate XML intellisense fileraysan5
Update Notepad++ functions intellisense
2020-12-23Update Makefile(s)raysan5
2020-12-23Remove trailing spacesraysan5
2020-12-23Update raylib versionraysan5
2020-12-23Update resource fileraysan5
2020-12-23Update CHANGELOGRay
2020-12-23Remove unused variableraysan5
2020-12-23Corrected typoraysan5
2020-12-23Corrected small issueraysan5
2020-12-23REMOVED: Travis CIraysan5
2020-12-23ADDED: CheckCollisionLines()raysan5
Removed function from raymath
2020-12-23Remove Travis CI badgeRay
2020-12-21[Math Feature]: Add two functions for Vector2 to know if two lines intersect ↵Victor Gallet
and two segments intersect (#1466) * Add a function to know if two lines intersect each other and if yes, get the intersection point * Remove indents * Rework the declaration of the 'Vector2LineIntersect' function, and add the 'Vector2SegmentIntersect' function * Remove bad indents * Fix compilation issues * Fix compilation error * Fix compilation error * Replace keyword '_Bool' by 'bool'
2020-12-20Update CHANGELOGRay
2020-12-19Set version for raylib 3.5Ray
2020-12-19Camera funcs, review params namesRay
Just for a better consistency
2020-12-19REVIEW: CheckCollisionSpheres() params namingRay
2020-12-19Minor tweakRay
2020-12-19ADDED: MemAlloc() / MemFree() #1440Ray
Exposing internal memory allocator/free, useful for advance users when required
2020-12-19Update raylib.hRay
2020-12-19Avoid *Rec suffix in some variablesRay
Pefixing/Suffixing some data type identifier in the variables is not a convention used in raylib, just reviewed it for consistency... Still, I kept the *Rec suffix in some functions.
2020-12-19Corrected DrawTextRecEx() bugRay
2020-12-19Support font chars padding on drawing #1432Ray
Previous implementation did not consider any padding while drawing the characters on screen (despite being available on the font atlas), so, only minimum character area was drawn. If some text effect shader was required (shadow, glow, outline...), there was no space in the drawn quad to draw that pixels effect. This commit corrects that issue.