Skip to content

Commit

Permalink
Update raylib_api.* by CI
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 24, 2024
1 parent 385e60d commit ec95ee8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions parser/output/raylib_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -7351,15 +7351,15 @@
},
{
"name": "ImageKernelConvolution",
"description": "Apply Custom Square image convolution kernel",
"description": "Apply custom square convolution kernel to image",
"returnType": "void",
"params": [
{
"type": "Image *",
"name": "image"
},
{
"type": "float *",
"type": "const float *",
"name": "kernel"
},
{
Expand Down
4 changes: 2 additions & 2 deletions parser/output/raylib_api.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5617,11 +5617,11 @@ return {
},
{
name = "ImageKernelConvolution",
description = "Apply Custom Square image convolution kernel",
description = "Apply custom square convolution kernel to image",
returnType = "void",
params = {
{type = "Image *", name = "image"},
{type = "float *", name = "kernel"},
{type = "const float *", name = "kernel"},
{type = "int", name = "kernelSize"}
}
},
Expand Down
4 changes: 2 additions & 2 deletions parser/output/raylib_api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2840,9 +2840,9 @@ Function 303: ImageBlurGaussian() (2 input parameters)
Function 304: ImageKernelConvolution() (3 input parameters)
Name: ImageKernelConvolution
Return type: void
Description: Apply Custom Square image convolution kernel
Description: Apply custom square convolution kernel to image
Param[1]: image (type: Image *)
Param[2]: kernel (type: float *)
Param[2]: kernel (type: const float *)
Param[3]: kernelSize (type: int)
Function 305: ImageResize() (3 input parameters)
Name: ImageResize
Expand Down
4 changes: 2 additions & 2 deletions parser/output/raylib_api.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1842,9 +1842,9 @@
<Param type="Image *" name="image" desc="" />
<Param type="int" name="blurSize" desc="" />
</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="float *" name="kernel" desc="" />
<Param type="const float *" name="kernel" desc="" />
<Param type="int" name="kernelSize" desc="" />
</Function>
<Function name="ImageResize" retType="void" paramCount="3" desc="Resize image (Bicubic scaling algorithm)">
Expand Down

0 comments on commit ec95ee8

Please sign in to comment.