summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-06-24 16:42:01 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-06-24 16:42:01 +0000
commitec95ee85a386db29f059b9738cd5ec9329f1661e (patch)
tree6282c39eab20c2375797f12b36fcd87cd937ad42
parent385e60dd41d49d56ac1bf44b68549070d108e941 (diff)
downloadraylib-ec95ee85a386db29f059b9738cd5ec9329f1661e.tar.gz
raylib-ec95ee85a386db29f059b9738cd5ec9329f1661e.zip
Update raylib_api.* by CI
-rw-r--r--parser/output/raylib_api.json4
-rw-r--r--parser/output/raylib_api.lua4
-rw-r--r--parser/output/raylib_api.txt4
-rw-r--r--parser/output/raylib_api.xml4
4 files changed, 8 insertions, 8 deletions
diff --git a/parser/output/raylib_api.json b/parser/output/raylib_api.json
index a75b94ed..2baa6c3f 100644
--- a/parser/output/raylib_api.json
+++ b/parser/output/raylib_api.json
@@ -7351,7 +7351,7 @@
},
{
"name": "ImageKernelConvolution",
- "description": "Apply Custom Square image convolution kernel",
+ "description": "Apply custom square convolution kernel to image",
"returnType": "void",
"params": [
{
@@ -7359,7 +7359,7 @@
"name": "image"
},
{
- "type": "float *",
+ "type": "const float *",
"name": "kernel"
},
{
diff --git a/parser/output/raylib_api.lua b/parser/output/raylib_api.lua
index 7dcb1fa4..a6d91cd6 100644
--- a/parser/output/raylib_api.lua
+++ b/parser/output/raylib_api.lua
@@ -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"}
}
},
diff --git a/parser/output/raylib_api.txt b/parser/output/raylib_api.txt
index fd082d07..f283ad79 100644
--- a/parser/output/raylib_api.txt
+++ b/parser/output/raylib_api.txt
@@ -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
diff --git a/parser/output/raylib_api.xml b/parser/output/raylib_api.xml
index 22f9b0ec..fa953b62 100644
--- a/parser/output/raylib_api.xml
+++ b/parser/output/raylib_api.xml
@@ -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)">