diff options
| author | Dane Madsen <[email protected]> | 2023-05-21 19:33:47 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-21 11:33:47 +0200 |
| commit | e96dc46d38fcc73cc278ef7a1ad95ce63c6ce989 (patch) | |
| tree | dce80cf3f5d6b9cff2486da6e0f0e3ea6df02f01 /projects/Notepad++/raylib_npp_parser/raylib_npp.xml | |
| parent | 1b4634702ca9f1e76477833618ccfea9093f03e5 (diff) | |
| download | raylib-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/Notepad++/raylib_npp_parser/raylib_npp.xml')
| -rw-r--r-- | projects/Notepad++/raylib_npp_parser/raylib_npp.xml | 17 |
1 files changed, 5 insertions, 12 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"> |
