summaryrefslogtreecommitdiffhomepage
path: root/projects/Geany
diff options
context:
space:
mode:
authorDane Madsen <[email protected]>2023-05-21 19:33:47 +1000
committerGitHub <[email protected]>2023-05-21 11:33:47 +0200
commite96dc46d38fcc73cc278ef7a1ad95ce63c6ce989 (patch)
treedce80cf3f5d6b9cff2486da6e0f0e3ea6df02f01 /projects/Geany
parent1b4634702ca9f1e76477833618ccfea9093f03e5 (diff)
downloadraylib-e96dc46d38fcc73cc278ef7a1ad95ce63c6ce989.tar.gz
raylib-e96dc46d38fcc73cc278ef7a1ad95ce63c6ce989.zip
Replaced GenImageGradientH and GenImageGradientV with GenImageLinearGradient (#3074)
* Replaced GenImageGradientH and GenImageGradientV with GenImageLinearGradient * renamed GenImageLinearGradient to GenImageGradientLinear
Diffstat (limited to 'projects/Geany')
-rw-r--r--projects/Geany/raylib.c.tags3
1 files changed, 1 insertions, 2 deletions
diff --git a/projects/Geany/raylib.c.tags b/projects/Geany/raylib.c.tags
index 78e6e724..d4180998 100644
--- a/projects/Geany/raylib.c.tags
+++ b/projects/Geany/raylib.c.tags
@@ -211,8 +211,7 @@ ImageColorContrast|void|(Image *image, float contrast);|
ImageColorBrightness|void|(Image *image, int brightness);|
ImageColorReplace|void|(Image *image, Color color, Color replace);|
GenImageColor|Image|(int width, int height, Color color);|
-GenImageGradientV|Image|(int width, int height, Color top, Color bottom);|
-GenImageGradientH|Image|(int width, int height, Color left, Color right);|
+GenImageGradientLinear|Image|(int width, int height, int direction, Color start, Color end);|
GenImageGradientRadial|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);|