diff options
| author | Dane Madsen <[email protected]> | 2023-05-22 23:20:28 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-22 15:20:28 +0200 |
| commit | a4a6d4da8a26d131bc3f3e643f6fe51de281d15f (patch) | |
| tree | 62aaabf5222f158dc1ac4e861e499611d0d1303a /projects/Geany | |
| parent | 84ae26cdc0ab22e7721552647cd6c30d8a478bae (diff) | |
| download | raylib-a4a6d4da8a26d131bc3f3e643f6fe51de281d15f.tar.gz raylib-a4a6d4da8a26d131bc3f3e643f6fe51de281d15f.zip | |
Add GenImageGradientSquare (#3077)
* Add GenImageGradientSquare to allow square gradients
* Fix GenImageGradientSquare and add to textures_image_generation example
* Remove params from GenImageGradientSquare
Diffstat (limited to 'projects/Geany')
| -rw-r--r-- | projects/Geany/raylib.c.tags | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/Geany/raylib.c.tags b/projects/Geany/raylib.c.tags index d4180998..4cc6d460 100644 --- a/projects/Geany/raylib.c.tags +++ b/projects/Geany/raylib.c.tags @@ -213,6 +213,7 @@ ImageColorReplace|void|(Image *image, Color color, Color replace);| GenImageColor|Image|(int width, int height, Color color);| GenImageGradientLinear|Image|(int width, int height, int direction, Color start, Color end);| GenImageGradientRadial|Image|(int width, int height, float density, Color inner, Color outer);| +GenImageGradientSquare|Image|(int width, int height, float density, Color inner, Color outer);| GenImageChecked|Image|(int width, int height, int checksX, int checksY, Color col1, Color col2);| GenImageWhiteNoise|Image|(int width, int height, float factor);| GenImagePerlinNoise|Image|(int width, int height, int offsetX, int offsetY, float scale);| |
