summaryrefslogtreecommitdiffhomepage
path: root/parser/output/raylib_api.xml
diff options
context:
space:
mode:
authorDane Madsen <[email protected]>2023-05-24 17:22:51 +1000
committerGitHub <[email protected]>2023-05-24 09:22:51 +0200
commite465ed0850106a3574d01363874ae49ef7e478c9 (patch)
tree937d11d54cac0c6b5282e6797f298aadf99524c1 /parser/output/raylib_api.xml
parentbf69b3805601627a509b92600c9b70efcddfedeb (diff)
downloadraylib-e465ed0850106a3574d01363874ae49ef7e478c9.tar.gz
raylib-e465ed0850106a3574d01363874ae49ef7e478c9.zip
Added ImageRotate (#3078)
* Added ImageRotate * Quick rename of the example * Update ImageRotate by changing doubles to floats and checking code convention * Update API
Diffstat (limited to 'parser/output/raylib_api.xml')
-rw-r--r--parser/output/raylib_api.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/parser/output/raylib_api.xml b/parser/output/raylib_api.xml
index 85b3e3e4..f450069c 100644
--- a/parser/output/raylib_api.xml
+++ b/parser/output/raylib_api.xml
@@ -656,7 +656,7 @@
<Param type="unsigned int" name="frames" desc="" />
</Callback>
</Callbacks>
- <Functions count="517">
+ <Functions count="518">
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
<Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" />
@@ -1685,6 +1685,10 @@
<Function name="ImageFlipHorizontal" retType="void" paramCount="1" desc="Flip image horizontally">
<Param type="Image *" name="image" desc="" />
</Function>
+ <Function name="ImageRotate" retType="void" paramCount="2" desc="Rotate image by input angle in degrees (-359 to 359) ">
+ <Param type="Image *" name="image" desc="" />
+ <Param type="int" name="degrees" desc="" />
+ </Function>
<Function name="ImageRotateCW" retType="void" paramCount="1" desc="Rotate image clockwise 90deg">
<Param type="Image *" name="image" desc="" />
</Function>