For the heck of it - I cannot figure out, how the arguments to that function should look like.
Maybe there is also something wrong with the translate-to-foreign functions.
(defcfun "DrawTriangleStrip" :void
"Draw a triangle strip defined by points"
(points (:pointer (:struct %vector2)))
(point-count :int)
(color (:struct %color)))
I tried both a list of 3d-vectors:vec2 and an array with element-type '3d-vectors:vec2 and both failed.
So, I am on my wits end, what it expects me to provide.