glCallLists function opengl

void glCallLists(
  1. int n,
  2. int type,
  3. Pointer<NativeType> lists
)
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);
}