glCallLists function opengl
GLAPI void GLAPIENTRY glCallLists( GLsizei n, GLenum type, const GLvoid *lists )
Implementation
void glCallLists(int n, int type, Pointer<NativeType> lists) {
final glCallListsAsFunction = _glCallLists
.cast<
NativeFunction<
Void Function(Uint32 n, Uint32 type, Pointer<NativeType> lists)
>
>()
.asFunction<void Function(int n, int type, Pointer<NativeType> lists)>();
return glCallListsAsFunction(n, type, lists);
}