Update raylib_api.* by CI
This commit is contained in:
parent
385e60dd41
commit
ec95ee85a3
4 changed files with 8 additions and 8 deletions
|
@ -7351,7 +7351,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ImageKernelConvolution",
|
"name": "ImageKernelConvolution",
|
||||||
"description": "Apply Custom Square image convolution kernel",
|
"description": "Apply custom square convolution kernel to image",
|
||||||
"returnType": "void",
|
"returnType": "void",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
|
@ -7359,7 +7359,7 @@
|
||||||
"name": "image"
|
"name": "image"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "float *",
|
"type": "const float *",
|
||||||
"name": "kernel"
|
"name": "kernel"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -5617,11 +5617,11 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "ImageKernelConvolution",
|
name = "ImageKernelConvolution",
|
||||||
description = "Apply Custom Square image convolution kernel",
|
description = "Apply custom square convolution kernel to image",
|
||||||
returnType = "void",
|
returnType = "void",
|
||||||
params = {
|
params = {
|
||||||
{type = "Image *", name = "image"},
|
{type = "Image *", name = "image"},
|
||||||
{type = "float *", name = "kernel"},
|
{type = "const float *", name = "kernel"},
|
||||||
{type = "int", name = "kernelSize"}
|
{type = "int", name = "kernelSize"}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -2840,9 +2840,9 @@ Function 303: ImageBlurGaussian() (2 input parameters)
|
||||||
Function 304: ImageKernelConvolution() (3 input parameters)
|
Function 304: ImageKernelConvolution() (3 input parameters)
|
||||||
Name: ImageKernelConvolution
|
Name: ImageKernelConvolution
|
||||||
Return type: void
|
Return type: void
|
||||||
Description: Apply Custom Square image convolution kernel
|
Description: Apply custom square convolution kernel to image
|
||||||
Param[1]: image (type: Image *)
|
Param[1]: image (type: Image *)
|
||||||
Param[2]: kernel (type: float *)
|
Param[2]: kernel (type: const float *)
|
||||||
Param[3]: kernelSize (type: int)
|
Param[3]: kernelSize (type: int)
|
||||||
Function 305: ImageResize() (3 input parameters)
|
Function 305: ImageResize() (3 input parameters)
|
||||||
Name: ImageResize
|
Name: ImageResize
|
||||||
|
|
|
@ -1842,9 +1842,9 @@
|
||||||
<Param type="Image *" name="image" desc="" />
|
<Param type="Image *" name="image" desc="" />
|
||||||
<Param type="int" name="blurSize" desc="" />
|
<Param type="int" name="blurSize" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="ImageKernelConvolution" retType="void" paramCount="3" desc="Apply Custom Square image convolution kernel">
|
<Function name="ImageKernelConvolution" retType="void" paramCount="3" desc="Apply custom square convolution kernel to image">
|
||||||
<Param type="Image *" name="image" desc="" />
|
<Param type="Image *" name="image" desc="" />
|
||||||
<Param type="float *" name="kernel" desc="" />
|
<Param type="const float *" name="kernel" desc="" />
|
||||||
<Param type="int" name="kernelSize" desc="" />
|
<Param type="int" name="kernelSize" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="ImageResize" retType="void" paramCount="3" desc="Resize image (Bicubic scaling algorithm)">
|
<Function name="ImageResize" retType="void" paramCount="3" desc="Resize image (Bicubic scaling algorithm)">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue