GLAPI void APIENTRY glSecondaryColorPointerEXT (GLint size, GLenum type, GLsizei stride, const void *pointer)
Implementation
void glSecondaryColorPointerExt(
int size,
int type,
int stride,
Pointer<NativeType> pointer,
) {
final glSecondaryColorPointerExtAsFunction = _glSecondaryColorPointerExt
.cast<
NativeFunction<
Void Function(
Int32 size,
Uint32 type,
Uint32 stride,
Pointer<NativeType> pointer,
)
>
>()
.asFunction<
void Function(
int size,
int type,
int stride,
Pointer<NativeType> pointer,
)
>();
return glSecondaryColorPointerExtAsFunction(size, type, stride, pointer);
}