summaryrefslogtreecommitdiffhomepage
path: root/parser/output/raylib_api.lua
diff options
context:
space:
mode:
Diffstat (limited to 'parser/output/raylib_api.lua')
-rw-r--r--parser/output/raylib_api.lua18
1 files changed, 9 insertions, 9 deletions
diff --git a/parser/output/raylib_api.lua b/parser/output/raylib_api.lua
index 37ec004b..cefb37e1 100644
--- a/parser/output/raylib_api.lua
+++ b/parser/output/raylib_api.lua
@@ -5522,6 +5522,15 @@ return {
}
},
{
+ name = "ImageFromChannel",
+ description = "Create an image from a selected channel of another image (GRAYSCALE/R16/R32)",
+ returnType = "Image",
+ params = {
+ {type = "Image", name = "image"},
+ {type = "int", name = "selectedChannel"}
+ }
+ },
+ {
name = "ImageText",
description = "Create an image from text (default font)",
returnType = "Image",
@@ -5544,15 +5553,6 @@ return {
}
},
{
- 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",
returnType = "void",