glCallLists function

void glCallLists(
  1. int n,
  2. int type,
  3. Pointer<Void> lists
)
GLAPI void GLAPIENTRY glCallLists (GLsizei n, GLenum type, const void *lists)

Implementation

void glCallLists(int n, int type, Pointer<Void> lists) {
  final glCallListsLookupFunction = libGL.lookupFunction<
      Void Function(Uint32 n, Uint32 type, Pointer<Void> lists),
      void Function(int n, int type, Pointer<Void> lists)>('glCallLists');
  return glCallListsLookupFunction(n, type, lists);
}