| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-01-01 | Update year to 2023 | Ray | |
| 2022-12-07 | ADDED: `ColorTint()`, `ColorContrast()` | Ray | |
| 2022-12-05 | ADDED: `ColorBrightness()` | Ray | |
| 2022-12-02 | format tweak | Ray | |
| 2022-11-29 | REVIEWED: Image fileformat support: PIC, PNM | Ray | |
| 2022-11-29 | ADDED: Optional support for PNM images (.ppm, .pgm) | Ray | |
| 2022-11-10 | Minor formating tweaks | Ray | |
| 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-10-26 | fixed blur issue on opaque pictures & added example (#2775) | nobytesgiven | |
| Co-authored-by: nobytesgiven <[email protected]> | |||
| 2022-10-25 | Added Box and Gaussian blurring (#2770) | nobytesgiven | |
| * Added Box and Gaussian blurring * Removed dependence of gaussian blur to box blur & Fixed precision errors Co-authored-by: nobytesgiven <[email protected]> | |||
| 2022-10-14 | Fix ImageTextEx and ImageDrawTextEx scaling (#2756) | hkc | |
| * Use RL_QUADS/RL_TRIANGLES for single-pixel drawing Addresses problem mentioned in https://github.com/raysan5/raylib/issues/2744#issuecomment-1273568263 (in short: when drawing pixels using DrawPixel{,V} in camera mode, upscaled pixel becomes a line instead of bigger pixel) * [rtextures] Fixed scaling down in ImageTextEx Closes #2755 | |||
| 2022-10-14 | ADDED: `GenImageText()` | Ray | |
| Probably useless but interesting for education. It generated a grayscale image directly from text data. | |||
| 2022-09-30 | minor tweaks | Ray | |
| 2022-09-22 | WARNING: Several changes on UTF-8/Codepoints API | Ray | |
| - ADDED: `GetCodepointPrevious()` - RENAMED: `GetCodepoint()` -> `GetCodepointNext()`, actually, reimplemented - `GetCodepoint()` has been kept for the moment, for compatibility and also because implementation is different - RENAMED: `TextCodepointsToUTF8()` to `LoadUTF8()`, simpler name and more aligned with raylib conventions (functions loading memory start with Load*()), parameters should be descriptive of functionailty. - ADDED: `UnloadUTF8()`, aligned with `LoadUTF8()` to avoid allocators issues. | |||
| 2022-09-19 | REVIEWED: New functions coding conventions | Ray | |
| 2022-09-19 | Added: `ImageDrawCircleLines`, `ImageDrawCircleLinesV` (#2713) | Rob Loach | |
| This adds `ImageDrawCircleLines()` and `ImageDrawCircleLinesV()` to draw outlines of circles, and updates `ImageDrawCircle()` draw a filled circle to match the effect of `DrawCircle()` and `DrawCircleLines()`. | |||
| 2022-09-17 | Move compressed textures loading to a separate self-contained library | Ray | |
| 2022-09-17 | ADDED: `GenImagePerlinNoise()` | Ray | |
| 2022-09-05 | WARNING: BREAKING: Removed `rlCheckRenderBatchLimit()` requirement | Ray | |
| Updated version to `rlgl 4.2` | |||
| 2022-08-13 | minor tweaks | Ray | |
| 2022-08-02 | Remove trailing spaces | Ray | |
| 2022-07-31 | Use American spelling of colourSpace (#2604) | BlueStag | |
| 2022-07-27 | rtextures: 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-26 | rtextures: 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-10 | REVIEWED: `ImageResize()` #2572 | Ray | |
| 2022-06-16 | fix: round off error in ColorAlphaBlend (#2524) | Roy Qu | |
| 2022-05-07 | Corrected typo | Ray | |
| 2022-04-23 | Optimize Some Image Functions. (#2429) | Anilforextra | |
| 2022-03-20 | REVIEWED: Avoid some float -> double promotions | Ray | |
| 2022-03-19 | Verify there is enough space in the batch for the npatch geometry. (#2401) | Jeffery Myers | |
| 2022-03-18 | Fix too many opening parens in src/rtextures.c (#2398) | João Távora | |
| This is a tiny change that makes code in src/rtextures.c "fold" correctly in editors/IDE's by matching the number of opening parenthesis to closing parenthesis. One of those editors is Emacs ;-) | |||
| 2022-02-18 | Removed trailing spaces | raysan5 | |
| 2022-01-26 | Support export .jpeg files | Ray | |
| 2022-01-22 | Update rtextures.c | Ray | |
| 2022-01-03 | Review tracelogs | Ray | |
| 2021-12-31 | Update year to 2022 | raysan5 | |
| 2021-12-19 | REVIEWED: `LoadTextureCubemap()` #2224 | Ray | |
| 2021-12-19 | REVIEWED: LoadTextureCubemap() #2223 | Ray | |
| 2021-12-19 | ADDED NOTE: ImageDraw() does not support f32bit #2222 | Ray | |
| Added a note for a future improvement | |||
| 2021-12-08 | REVIEWED: GenImageCellular() #2178 | Ray | |
| 2021-12-07 | REVIEWED: DrawTextureTiled() #2173 | raysan5 | |
| 2021-12-06 | Tweaks | Ray | |
| 2021-12-04 | Support custom modules inclusion | Ray | |
| Allow to choose which modules are compiled with raylib, if some modules are excluded from compilation, required functionality is not available but smaller builds are possible. | |||
| 2021-12-03 | Added a couple of notes | Ray | |
| 2021-11-28 | REVIEWED: Updated QOI to first official release | Ray | |
| 2021-11-27 | ADDED: Support for QOI image format | Ray | |
| 2021-11-15 | REVIEWED: LoadTextureFromImage() | Ray | |
| Allow texture loading with no data transfer (in case image.data = NULL) | |||
| 2021-10-14 | Remove trailing spaces | Ray | |
