glColorPointer function

void glColorPointer(
  1. int size,
  2. int type,
  3. int stride,
  4. Pointer<Void> pointer,
)
GLAPI void GLAPIENTRY glColorPointer (GLint size, GLenum type, GLsizei stride, const void *pointer)

Implementation

void glColorPointer(int size, int type, int stride, Pointer<Void> pointer) {
  final glColorPointerLookupFunction = libGL.lookupFunction<
      Void Function(
          Int32 size, Uint32 type, Uint32 stride, Pointer<Void> pointer),
      void Function(int size, int type, int stride,
          Pointer<Void> pointer)>('glColorPointer');
  return glColorPointerLookupFunction(size, type, stride, pointer);
}