Update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2024-06-30 09:38:16 +00:00
parent 1e1061d5c7
commit 4c90fc6eff
4 changed files with 4 additions and 4 deletions

View file

@ -7185,7 +7185,7 @@
}, },
{ {
"name": "ImageFromChannel", "name": "ImageFromChannel",
"description": "Create an image from a selected channel of another image (GRAYSCALE/R16/R32)", "description": "Create an image from a selected channel of another image (GRAYSCALE)",
"returnType": "Image", "returnType": "Image",
"params": [ "params": [
{ {

View file

@ -5523,7 +5523,7 @@ return {
}, },
{ {
name = "ImageFromChannel", name = "ImageFromChannel",
description = "Create an image from a selected channel of another image (GRAYSCALE/R16/R32)", description = "Create an image from a selected channel of another image (GRAYSCALE)",
returnType = "Image", returnType = "Image",
params = { params = {
{type = "Image", name = "image"}, {type = "Image", name = "image"},

View file

@ -2776,7 +2776,7 @@ Function 293: ImageFromImage() (2 input parameters)
Function 294: ImageFromChannel() (2 input parameters) Function 294: ImageFromChannel() (2 input parameters)
Name: ImageFromChannel Name: ImageFromChannel
Return type: Image Return type: Image
Description: Create an image from a selected channel of another image (GRAYSCALE/R16/R32) Description: Create an image from a selected channel of another image (GRAYSCALE)
Param[1]: image (type: Image) Param[1]: image (type: Image)
Param[2]: selectedChannel (type: int) Param[2]: selectedChannel (type: int)
Function 295: ImageText() (3 input parameters) Function 295: ImageText() (3 input parameters)

View file

@ -1798,7 +1798,7 @@
<Param type="Image" name="image" desc="" /> <Param type="Image" name="image" desc="" />
<Param type="Rectangle" name="rec" desc="" /> <Param type="Rectangle" name="rec" desc="" />
</Function> </Function>
<Function name="ImageFromChannel" retType="Image" paramCount="2" desc="Create an image from a selected channel of another image (GRAYSCALE/R16/R32)"> <Function name="ImageFromChannel" retType="Image" paramCount="2" desc="Create an image from a selected channel of another image (GRAYSCALE)">
<Param type="Image" name="image" desc="" /> <Param type="Image" name="image" desc="" />
<Param type="int" name="selectedChannel" desc="" /> <Param type="int" name="selectedChannel" desc="" />
</Function> </Function>