diff options
Diffstat (limited to 'projects/Notepad++/raylib_npp_parser')
| -rw-r--r-- | projects/Notepad++/raylib_npp_parser/raylib_npp.xml | 17 | ||||
| -rw-r--r-- | projects/Notepad++/raylib_npp_parser/raylib_to_parse.h | 3 |
2 files changed, 6 insertions, 14 deletions
diff --git a/projects/Notepad++/raylib_npp_parser/raylib_npp.xml b/projects/Notepad++/raylib_npp_parser/raylib_npp.xml index e764a1b6..890501f2 100644 --- a/projects/Notepad++/raylib_npp_parser/raylib_npp.xml +++ b/projects/Notepad++/raylib_npp_parser/raylib_npp.xml @@ -1378,20 +1378,13 @@ <Param name="Color color" /> </Overload> </KeyWord> - <KeyWord name="GenImageGradientV" func="yes"> - <Overload retVal="Image" descr="Generate image: vertical gradient"> + <KeyWord name="GenImageGradientLinear" func="yes"> + <Overload retVal="Image" descr="Generate image: linear gradient"> <Param name="int width" /> <Param name="int height" /> - <Param name="Color top" /> - <Param name="Color bottom" /> - </Overload> - </KeyWord> - <KeyWord name="GenImageGradientH" func="yes"> - <Overload retVal="Image" descr="Generate image: horizontal gradient"> - <Param name="int width" /> - <Param name="int height" /> - <Param name="Color left" /> - <Param name="Color right" /> + <Param name="int direction" /> + <Param name="Color start" /> + <Param name="Color end" /> </Overload> </KeyWord> <KeyWord name="GenImageGradientRadial" func="yes"> diff --git a/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h b/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h index 96732e31..3f845013 100644 --- a/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h +++ b/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h @@ -317,8 +317,7 @@ RLAPI bool ExportImageAsCode(Image image, const char *fileName); // Image generation functions RLAPI Image GenImageColor(int width, int height, Color color); // Generate image: plain color -RLAPI Image GenImageGradientV(int width, int height, Color top, Color bottom); // Generate image: vertical gradient -RLAPI Image GenImageGradientH(int width, int height, Color left, Color right); // Generate image: horizontal gradient +RLAPI Image GenImageGradientLinear(int width, int height, int direction, Color start, Color end); // Generate image: linear gradient RLAPI Image GenImageGradientRadial(int width, int height, float density, Color inner, Color outer); // Generate image: radial gradient RLAPI Image GenImageChecked(int width, int height, int checksX, int checksY, Color col1, Color col2); // Generate image: checked RLAPI Image GenImageWhiteNoise(int width, int height, float factor); // Generate image: white noise |
