| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-12-10 | Update windows.yml | Ray | |
| 2022-12-07 | ADDED: `ColorTint()`, `ColorContrast()` | Ray | |
| 2022-12-05 | ADDED: `ColorBrightness()` | Ray | |
| 2022-12-04 | Expose OpenGL blending mode factors and functions/equations | Ray | |
| 2022-12-04 | REVIEWED: Example: `textures_textured_curve` | Ray | |
| 2022-12-03 | Add a textured curve example (#2821) | Jeffery Myers | |
| 2022-12-02 | format tweak | Ray | |
| 2022-12-02 | Update Makefile | Ray | |
| 2022-11-30 | Fix an issue when compiling for web (#2820) | Hristo Iliev | |
| It would try to use the glfw on the system but we're cross-compiling for web where the implementation is provided by emscripten's team | |||
| 2022-11-29 | REVIEWED: Image fileformat support: PIC, PNM | Ray | |
| 2022-11-29 | ADDED: Optional support for PNM images (.ppm, .pgm) | Ray | |
| 2022-11-29 | REVIEWED: Issue with shader linkage | Ray | |
| 2022-11-29 | Updated rcore.c, renamed 'time' to 'nanoSeconds' (#2816) | jtainer | |
| * Updated rcore.c, renamed 'time' to 'time_nsec' When PLATFORM_ANDROID, PLATFORM_RPI or PLATFORM_DRM were defined, there is a compilation error to redefinition of the variable 'time', so the second instance of 'time' was changed to 'time_nsec' which both fixes the name collision and more accurately describes what that variable represents. * Renamed 'time_nsec' to 'nanoSeconds' | |||
| 2022-11-28 | Fix wrong compile definition (#2815) | Daijiro Fukuda | |
| 2022-11-28 | Fix array out of range (#2814) | Daijiro Fukuda | |
| This breaks other values of the struct. | |||
| 2022-11-28 | Update github workflows | Ray | |
| 2022-11-28 | REVIEWED: Some compilation warnings (for strict rules) | Ray | |
| 2022-11-24 | Use const for pointer float array (#2807) | Antonis Geralis | |
| * Use const for pointer float array * missed a definition | |||
| 2022-11-24 | Correct types for rlBindImageTexture (#2808) | Antonis Geralis | |
| 2022-11-22 | Rename lighting_instanced shader (glsl100) to lighting_instancing (#2805) | gtrxAC | |
| * JSON parser: Use array for function params (#2255) * Parser: follow C convention of type before name * Update file names in build scripts * Rename lighting_instanced shader to instancing | |||
| 2022-11-22 | REVIEWED: UnloadDirectoryFiles() | Ray | |
| 2022-11-22 | Minor tweaks | Ray | |
| 2022-11-21 | Add raylib-vapi (#2804) | Alex Macafee | |
| 2022-11-15 | REVIEWED: `rlCullFace()` -> `rlSetCullFace()` | Ray | |
| Reviewed formating to follow raylib coding conventions. | |||
| 2022-11-15 | Added function rlCullFace (#2797) | jtainer | |
| rlCullFace sets the face culling mode to RL_FRONT or RL_BACK which correspond to GL_FRONT and GL_BACK respectively. | |||
| 2022-11-15 | Warning on GetRandomValue range limit (#2800) | Pere001 | |
| Added a comment explaining the range limitations of GetRandomValue. Added a run-time warning TRACELOG when GetRandomValue is called with an invalid range. | |||
| 2022-11-15 | Merge branch 'master' of https://github.com/raysan5/raylib | Ray | |
| 2022-11-15 | Avoid using `DrawCubeTexture()` | Ray | |
| 2022-11-15 | Update cmake.yml | Ray | |
| 2022-11-15 | Update linux_examples.yml | Ray | |
| 2022-11-15 | WARNING: REMOVED: `DrawCubeTexture()`, `DrawCubeTextureRec()` | Ray | |
| Those two functions have been moved to a new example: `models_draw_cube_texture`. The reasons for this decision: - Function inflexibility: Many users with the need to draw a textured cube could need to customize the texture applied to every face, that function did not allow that kind of functionality. - rlgl functionality exposure: The implementation exposed will teach users how to implement custom textured triangles drawing. | |||
| 2022-11-12 | Raylib-py updated to 4.2, plus parallel project (#2798) | Jorge A. Gomes | |
| Now Raylib-py is a releases-only project. For now on, code maintenance will happen in a parallel project created to automate the binding generation: RaylibpyCtbg | |||
| 2022-11-11 | Add Claylib (CL bindings + convenience layer) (#2796) | Scott Helvick | |
| 2022-11-10 | Merge branch 'master' of https://github.com/raysan5/raylib | Ray | |
| 2022-11-10 | Minor formating tweaks | Ray | |
| 2022-11-10 | Fix Makefile emscripten path (#2785) | Julianiolo | |
| 2022-11-10 | WARNING: REMOVED: `DrawTextureTiled()` | Ray | |
| This function implementation has been moved to the related example. Current implementation can be probably customized depending on user needs. | |||
| 2022-11-10 | WARNING: REMOVED: `DrawTextureQuad()` | Ray | |
| This function can be easely replicated using `DrawtexturePro()` and actually it was doing some assumptions not transparent to the user. Even the function name was confusing. No example was available for it and actually noone requested one example. | |||
| 2022-11-10 | WARNING: REMOVED: `DrawTexturePoly()` | Ray | |
| Function moved to `examples/textures/textures_polygon.c`, so users can learn from the implementation and create custom variants as required. | |||
| 2022-11-09 | dray is now 4.2.0 (#2792) | red thing | |
| 2022-11-09 | Add frameworks needed on macos (#2793) | Martin Wickham | |
| 2022-11-08 | removing typo (#2790) | Dor Shapira | |
| 2022-11-05 | Update rcore.c | Ray | |
| 2022-11-04 | Fix ExportDataAsCode() data types (#2787) | RGDTAB | |
| 2022-11-02 | Fix examples/build.zig for the latest Zig version (#2786) | Roman Akberov | |
| 2022-10-30 | Fix Android x86 Architecture name (#2783) | IsaacTCB | |
| When building a x86 project, the folder inside lib is named i686. However Android x86 actually expects the folder to be called x86. | |||
| 2022-10-27 | Fix deprecation error on android api higher than 23 (#2778) | Angga Permana | |
| 2022-10-26 | Improved billboards example, highlighting rotation and draw order (#2779) | nobytesgiven | |
| * Improved billboards example, highlighting rotation and draw order * changes to conform to the raylib conventions * NOW it conforms Co-authored-by: nobytesgiven <[email protected]> | |||
| 2022-10-26 | REVIEWED: Issue with `OpenURL()` | Ray | |
| 2022-10-26 | fixing typo (#2781) | Dor Shapira | |
| fixing typo | |||
