diff options
| author | Ray <raysan5@gmail.com> | 2018-07-15 23:19:06 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2018-07-15 23:19:06 +0200 |
| commit | d127d8e9f8492dc29f6671c0a5bc51f26879f29a (patch) | |
| tree | 052dda7d3bcacdc4de2f88174475c3fb4499e0ef /projects/Notepad++/c_raylib.xml | |
| parent | 0c631e6b5a917f2d94669d91750e93ac8c960a0d (diff) | |
| download | raylib-d127d8e9f8492dc29f6671c0a5bc51f26879f29a.tar.gz raylib-d127d8e9f8492dc29f6671c0a5bc51f26879f29a.zip | |
Updated Notepad++ raylib intellisense
Diffstat (limited to 'projects/Notepad++/c_raylib.xml')
| -rw-r--r-- | projects/Notepad++/c_raylib.xml | 56 |
1 files changed, 53 insertions, 3 deletions
diff --git a/projects/Notepad++/c_raylib.xml b/projects/Notepad++/c_raylib.xml index 4ad11410..ee1c5f4b 100644 --- a/projects/Notepad++/c_raylib.xml +++ b/projects/Notepad++/c_raylib.xml @@ -846,6 +846,11 @@ <Param name="Image image" /> </Overload> </KeyWord> + <KeyWord name="GetImageDataNormalized" func="yes"> + <Overload retVal="Vector4" descr="Get pixel data from image as Vector4 array (float normalized)"> + <Param name="Image image" /> + </Overload> + </KeyWord> <KeyWord name="GetPixelDataSize" func="yes"> <Overload retVal="int" descr="Get pixel data size in bytes (image or texture)"> <Param name="int width" /> @@ -927,6 +932,16 @@ <Param name="int newHeight" /> </Overload> </KeyWord> + <KeyWord name="ImageResizeCanvas" func="yes"> + <Overload retVal="void" descr="Resize canvas and fill with color"> + <Param name="Image *image" /> + <Param name="int newWidth" /> + <Param name="int newHeight" /> + <Param name="int offsetX" /> + <Param name="int offsetY" /> + <Param name="Color color" /> + </Overload> + </KeyWord> <KeyWord name="ImageMipmaps" func="yes"> <Overload retVal="void" descr="Generate all mipmap levels for a provided image"> <Param name="Image *image" /> @@ -1003,6 +1018,16 @@ <Param name="Image *image" /> </Overload> </KeyWord> + <KeyWord name="ImageRotateCW" func="yes"> + <Overload retVal="void" descr="Rotate image clockwise 90deg"> + <Param name="Image *image" /> + </Overload> + </KeyWord> + <KeyWord name="ImageRotateCCW" func="yes"> + <Overload retVal="void" descr="Rotate image counter-clockwise 90deg"> + <Param name="Image *image" /> + </Overload> + </KeyWord> <KeyWord name="ImageColorTint" func="yes"> <Overload retVal="void" descr="Modify image color: tint"> <Param name="Image *image" /> @@ -1031,6 +1056,13 @@ <Param name="int brightness" /> </Overload> </KeyWord> + <KeyWord name="ImageColorReplace" func="yes"> + <Overload retVal="void" descr="Modify image color: replace color"> + <Param name="Image *image" /> + <Param name="Color color" /> + <Param name="Color replace" /> + </Overload> + </KeyWord> <!-- Image generation functions --> <KeyWord name="GenImageColor" func="yes"> @@ -1167,22 +1199,40 @@ <!-------------------------------------------------------------------------------------- --> <!-- Font loading/unloading functions --> - <KeyWord name="GetDefaultFont" func="yes"> + <KeyWord name="GetFontDefault" func="yes"> <Overload retVal="Font" descr="Get the default Font"></Overload> </KeyWord> <KeyWord name="LoadFont" func="yes"> - <Overload retVal="Font" descr="Load Font from file into GPU memory (VRAM)"> + <Overload retVal="Font" descr="Load font from file into GPU memory (VRAM)"> <Param name="const char *fileName" /> </Overload> </KeyWord> <KeyWord name="LoadFontEx" func="yes"> - <Overload retVal="Font" descr="Load Font from file with extended parameters"> + <Overload retVal="Font" descr="Load font from file with extended parameters"> <Param name="const char *fileName" /> <Param name="int fontSize" /> <Param name="int charsCount" /> <Param name="int *fontChars" /> </Overload> </KeyWord> + <KeyWord name="LoadFontData" func="yes"> + <Overload retVal="CharInfo" descr="Load font data for further use"> + <Param name="const char *fileName" /> + <Param name="int fontSize" /> + <Param name="int *fontChars" /> + <Param name="int charsCount" /> + <Param name="bool sdf" /> + </Overload> + </KeyWord> + <KeyWord name="GenImageFontAtlas" func="yes"> + <Overload retVal="Image" descr="Generate image font atlas using chars info"> + <Param name="CharInfo *chars" /> + <Param name="int fontSize" /> + <Param name="int charsCount" /> + <Param name="int padding" /> + <Param name="int packMethod" /> + </Overload> + </KeyWord> <KeyWord name="UnloadFont" func="yes"> <Overload retVal="void" descr="Unload Font from GPU memory (VRAM)"> <Param name="Font font" /> |
