glRectxvOes function opengl_glext
GLAPI void APIENTRY glRectxvOES (const GLfixed *v1, const GLfixed *v2)
Implementation
void glRectxvOes(Pointer<Int32> v1, Pointer<Int32> v2) {
final glRectxvOesAsFunction = _glRectxvOes
.cast<
NativeFunction<Void Function(Pointer<Int32> v1, Pointer<Int32> v2)>
>()
.asFunction<void Function(Pointer<Int32> v1, Pointer<Int32> v2)>();
return glRectxvOesAsFunction(v1, v2);
}