GLAPI void APIENTRY glColorPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer)
Implementation
void glColorPointerExt(
int size,
int type,
int stride,
int count,
Pointer<NativeType> pointer,
) {
final glColorPointerExtAsFunction = _glColorPointerExt
.cast<
NativeFunction<
Void Function(
Int32 size,
Uint32 type,
Uint32 stride,
Uint32 count,
Pointer<NativeType> pointer,
)
>
>()
.asFunction<
void Function(
int size,
int type,
int stride,
int count,
Pointer<NativeType> pointer,
)
>();
return glColorPointerExtAsFunction(size, type, stride, count, pointer);
}