Update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2024-06-30 08:33:45 +00:00
parent 6e2661f92d
commit a805f46f55
4 changed files with 313 additions and 279 deletions

View File

@ -7229,6 +7229,21 @@
}
]
},
{
"name": "ImageFromChannel",
"description": "Create an image from a selected channel of another image",
"returnType": "Image",
"params": [
{
"type": "Image",
"name": "image"
},
{
"type": "int",
"name": "selectedChannel"
}
]
},
{
"name": "ImageFormat",
"description": "Convert image data to desired format",

View File

@ -5543,6 +5543,15 @@ return {
{type = "Color", name = "tint"}
}
},
{
name = "ImageFromChannel",
description = "Create an image from a selected channel of another image",
returnType = "Image",
params = {
{type = "Image", name = "image"},
{type = "int", name = "selectedChannel"}
}
},
{
name = "ImageFormat",
description = "Convert image data to desired format",

File diff suppressed because it is too large Load Diff

View File

@ -670,7 +670,7 @@
<Param type="unsigned int" name="frames" desc="" />
</Callback>
</Callbacks>
<Functions count="572">
<Functions count="573">
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
<Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" />
@ -1810,6 +1810,10 @@
<Param type="float" name="spacing" desc="" />
<Param type="Color" name="tint" desc="" />
</Function>
<Function name="ImageFromChannel" retType="Image" paramCount="2" desc="Create an image from a selected channel of another image">
<Param type="Image" name="image" desc="" />
<Param type="int" name="selectedChannel" desc="" />
</Function>
<Function name="ImageFormat" retType="void" paramCount="2" desc="Convert image data to desired format">
<Param type="Image *" name="image" desc="" />
<Param type="int" name="newFormat" desc="" />