Update raylib_api.* by CI
This commit is contained in:
parent
6e2661f92d
commit
a805f46f55
@ -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",
|
||||
|
@ -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
@ -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="" />
|
||||
|
Loading…
Reference in New Issue
Block a user