summaryrefslogtreecommitdiffhomepage
path: root/examples/textures/textures_image_generation.c
AgeCommit message (Collapse)Author
2024-02-23Fixed typo in a comment (#3816) (#3817)Abhishek Rathore
Fixed a grammatical error by removing "are" to change `... but some are have multiple purposes ...` to `... but some have multiple purposes ...` in `textures/textures_image_generation`
2024-01-02Update copyright to 2024Ray
2023-05-22Add GenImageGradientSquare (#3077)Dane Madsen
* Add GenImageGradientSquare to allow square gradients * Fix GenImageGradientSquare and add to textures_image_generation example * Remove params from GenImageGradientSquare
2023-05-21Replaced GenImageGradientH and GenImageGradientV with GenImageLinearGradient ↵Dane Madsen
(#3074) * Replaced GenImageGradientH and GenImageGradientV with GenImageLinearGradient * renamed GenImageLinearGradient to GenImageGradientLinear
2023-01-01Update year to 2023Ray
2022-07-20REVIEWED: examples descriptionsRay
2022-06-21Added new comment to examplesRay
2021-10-06WARNING: BREAKING: REMOVED: `GenImagePerlinNoise()`raysan5
raylib was using `stb_perlin.h` library to generate perlin noise, it seems that recently this library has been flagged as it could be infringing some algorythm patent. For security, it has been removed from raylib.
2021-05-08Added support for additional mouse buttons (#1753)Lambert Wang
* Added support for additional mouse buttons * Renamed mouse button enum Co-authored-by: Lambert Wang <[email protected]>
2019-05-27Review variables initializationRay
2019-05-20Review ALL examplesRay
2018-05-04Rectangle parameters changed to floatRay San
- Some examples tweaks - Reviewed ImageFormat() - Use float for text fontSize
2018-01-17Reviewed function GenImagePerlinNoise()Ray
Added support for noise image offset
2017-10-17Improved some examplesRay San
2017-07-02Review some formatting for consistencyraysan5
2017-06-28Removed an unwanted file and fixed an exampleWilhem Barbier
2017-06-28Add a density parameter to GenImageRadialGradientWilhem Barbier
2017-06-28Add more image generation functions: radial gradient and perlin noiseWilhem Barbier
2017-06-28Add some functions to generate imagesWilhem Barbier
Namely: - GenImageHorizontalV - GenImageHorizontalH - GenImageChecked - GenImageWhiteNoise - GenImageCellular The gradient implementation may be a bit naive, for example it doesn't do any gamma correction.