summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
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.
2020-12-19Minimal tweakRay
2020-12-19Update textures.cRay
2020-12-18WARNING: RENAMED several functions for consistency #1440Ray
This is a BREAKING CHANGE! To address the linked issue, several functions have been renamed and couterpart functions have been created to free loaded memory: - RENAMED: GetImageData() -> LoadImageColors() - RENAMED: GetImagePalette() -> LoadImagePalette() - RENAMED: GetWaveData() -> LoadWaveSamples() - ADDED: UnloadImageColors() - ADDED: UnloadImagePalette() - ADDED: UnloadWaveSamples()
2020-12-18Added some Web checks for missing GLFW functionsRay
2020-12-18WARNING: GetKeyPressed() <-> GetCharPressed() #1336Ray
Previous GetKeyPressed() method was actually returning unicode codepoints equivalent values instead of the key-code of the pressed key. So, it has been replaced by GetCharPressed(), returning unicode codepoints and GetKeyPressed() now returns key-codes.
2020-12-18Support mouse input on example #1465Ray
2020-12-16Add headers to install cmake (#1462)hristo
* Changed extension for web from .bc to .a I did this to support vcpkg expectation. When using the library from vcpkg for web you would install it using vcpkg install raylib:wasm32-emscripten but also vcpkg expects the output lib to be with .a extension instead of .bc Doesn't make a difference for standalone builds or when raylib is used as a subdirectory dependency. * Added headers to install targets to fix vcpkg usage Currently vcpkg works by installing the cmake target into its packages directory. The problem is that install only copies the public header at this point so we need to add the others to the install targets.
2020-12-16Changing JPG compression (#1463)Andrea Fontana
Since I don't think the purpose of raylib is to save space compressing image, I think it could be a good idea to keep quality from 90 to 100.