Update raylib_api.* by CI
This commit is contained in:
parent
6e2661f92d
commit
a805f46f55
4 changed files with 313 additions and 279 deletions
|
@ -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",
|
"name": "ImageFormat",
|
||||||
"description": "Convert image data to desired format",
|
"description": "Convert image data to desired format",
|
||||||
|
|
|
@ -5543,6 +5543,15 @@ return {
|
||||||
{type = "Color", name = "tint"}
|
{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",
|
name = "ImageFormat",
|
||||||
description = "Convert image data to desired format",
|
description = "Convert image data to desired format",
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -670,7 +670,7 @@
|
||||||
<Param type="unsigned int" name="frames" desc="" />
|
<Param type="unsigned int" name="frames" desc="" />
|
||||||
</Callback>
|
</Callback>
|
||||||
</Callbacks>
|
</Callbacks>
|
||||||
<Functions count="572">
|
<Functions count="573">
|
||||||
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
|
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
|
||||||
<Param type="int" name="width" desc="" />
|
<Param type="int" name="width" desc="" />
|
||||||
<Param type="int" name="height" desc="" />
|
<Param type="int" name="height" desc="" />
|
||||||
|
@ -1810,6 +1810,10 @@
|
||||||
<Param type="float" name="spacing" desc="" />
|
<Param type="float" name="spacing" desc="" />
|
||||||
<Param type="Color" name="tint" desc="" />
|
<Param type="Color" name="tint" desc="" />
|
||||||
</Function>
|
</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">
|
<Function name="ImageFormat" retType="void" paramCount="2" desc="Convert image data to desired format">
|
||||||
<Param type="Image *" name="image" desc="" />
|
<Param type="Image *" name="image" desc="" />
|
||||||
<Param type="int" name="newFormat" desc="" />
|
<Param type="int" name="newFormat" desc="" />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue