summaryrefslogtreecommitdiffhomepage
path: root/parser/output/raylib_api.json
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-06-23 20:51:38 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-06-23 20:51:38 +0000
commitc7bda3d10fe27051ad41cdb30146a884ce6b35af (patch)
tree739d26a6acb79ec6845f186803abe58655c4b731 /parser/output/raylib_api.json
parent7e50270d496762e7202b61e26ba1c42c47161c4e (diff)
downloadraylib-c7bda3d10fe27051ad41cdb30146a884ce6b35af.tar.gz
raylib-c7bda3d10fe27051ad41cdb30146a884ce6b35af.zip
Update raylib_api.* by CI
Diffstat (limited to 'parser/output/raylib_api.json')
-rw-r--r--parser/output/raylib_api.json135
1 files changed, 135 insertions, 0 deletions
diff --git a/parser/output/raylib_api.json b/parser/output/raylib_api.json
index ad49b64a..c4577e68 100644
--- a/parser/output/raylib_api.json
+++ b/parser/output/raylib_api.json
@@ -8014,6 +8014,141 @@
]
},
{
+ "name": "ImageDrawTriangle",
+ "description": "Draw triangle within an image",
+ "returnType": "void",
+ "params": [
+ {
+ "type": "Image *",
+ "name": "dst"
+ },
+ {
+ "type": "Vector2",
+ "name": "v1"
+ },
+ {
+ "type": "Vector2",
+ "name": "v2"
+ },
+ {
+ "type": "Vector2",
+ "name": "v3"
+ },
+ {
+ "type": "Color",
+ "name": "color"
+ }
+ ]
+ },
+ {
+ "name": "ImageDrawTriangleEx",
+ "description": "Draw triangle with interpolated colors within an image",
+ "returnType": "void",
+ "params": [
+ {
+ "type": "Image *",
+ "name": "dst"
+ },
+ {
+ "type": "Vector2",
+ "name": "v1"
+ },
+ {
+ "type": "Vector2",
+ "name": "v2"
+ },
+ {
+ "type": "Vector2",
+ "name": "v3"
+ },
+ {
+ "type": "Color",
+ "name": "c1"
+ },
+ {
+ "type": "Color",
+ "name": "c2"
+ },
+ {
+ "type": "Color",
+ "name": "c3"
+ }
+ ]
+ },
+ {
+ "name": "ImageDrawTriangleLines",
+ "description": "Draw triangle outline within an image",
+ "returnType": "void",
+ "params": [
+ {
+ "type": "Image *",
+ "name": "dst"
+ },
+ {
+ "type": "Vector2",
+ "name": "v1"
+ },
+ {
+ "type": "Vector2",
+ "name": "v2"
+ },
+ {
+ "type": "Vector2",
+ "name": "v3"
+ },
+ {
+ "type": "Color",
+ "name": "color"
+ }
+ ]
+ },
+ {
+ "name": "ImageDrawTriangleFan",
+ "description": "Draw a triangle fan defined by points within an image (first vertex is the center)",
+ "returnType": "void",
+ "params": [
+ {
+ "type": "Image *",
+ "name": "dst"
+ },
+ {
+ "type": "Vector2 *",
+ "name": "points"
+ },
+ {
+ "type": "int",
+ "name": "pointCount"
+ },
+ {
+ "type": "Color",
+ "name": "color"
+ }
+ ]
+ },
+ {
+ "name": "ImageDrawTriangleStrip",
+ "description": "Draw a triangle strip defined by points within an image",
+ "returnType": "void",
+ "params": [
+ {
+ "type": "Image *",
+ "name": "dst"
+ },
+ {
+ "type": "Vector2 *",
+ "name": "points"
+ },
+ {
+ "type": "int",
+ "name": "pointCount"
+ },
+ {
+ "type": "Color",
+ "name": "color"
+ }
+ ]
+ },
+ {
"name": "ImageDraw",
"description": "Draw a source image within a destination image (tint applied to source)",
"returnType": "void",