<Functionname="InitWindow"retType="void"paramCount="3"desc="Initialize window and OpenGL context">
<Paramtype="int"name="width"desc=""/>
<Paramtype="int"name="height"desc=""/>
@ -2017,6 +2017,41 @@
<Paramtype="int"name="thick"desc=""/>
<Paramtype="Color"name="color"desc=""/>
</Function>
<Functionname="ImageDrawTriangle"retType="void"paramCount="5"desc="Draw triangle within an image">
<Paramtype="Image *"name="dst"desc=""/>
<Paramtype="Vector2"name="v1"desc=""/>
<Paramtype="Vector2"name="v2"desc=""/>
<Paramtype="Vector2"name="v3"desc=""/>
<Paramtype="Color"name="color"desc=""/>
</Function>
<Functionname="ImageDrawTriangleEx"retType="void"paramCount="7"desc="Draw triangle with interpolated colors within an image">
<Paramtype="Image *"name="dst"desc=""/>
<Paramtype="Vector2"name="v1"desc=""/>
<Paramtype="Vector2"name="v2"desc=""/>
<Paramtype="Vector2"name="v3"desc=""/>
<Paramtype="Color"name="c1"desc=""/>
<Paramtype="Color"name="c2"desc=""/>
<Paramtype="Color"name="c3"desc=""/>
</Function>
<Functionname="ImageDrawTriangleLines"retType="void"paramCount="5"desc="Draw triangle outline within an image">
<Paramtype="Image *"name="dst"desc=""/>
<Paramtype="Vector2"name="v1"desc=""/>
<Paramtype="Vector2"name="v2"desc=""/>
<Paramtype="Vector2"name="v3"desc=""/>
<Paramtype="Color"name="color"desc=""/>
</Function>
<Functionname="ImageDrawTriangleFan"retType="void"paramCount="4"desc="Draw a triangle fan defined by points within an image (first vertex is the center)">
<Paramtype="Image *"name="dst"desc=""/>
<Paramtype="Vector2 *"name="points"desc=""/>
<Paramtype="int"name="pointCount"desc=""/>
<Paramtype="Color"name="color"desc=""/>
</Function>
<Functionname="ImageDrawTriangleStrip"retType="void"paramCount="4"desc="Draw a triangle strip defined by points within an image">
<Paramtype="Image *"name="dst"desc=""/>
<Paramtype="Vector2 *"name="points"desc=""/>
<Paramtype="int"name="pointCount"desc=""/>
<Paramtype="Color"name="color"desc=""/>
</Function>
<Functionname="ImageDraw"retType="void"paramCount="5"desc="Draw a source image within a destination image (tint applied to source)">