glInsertComponentExt function opengl_glext
GLAPI void APIENTRY glInsertComponentEXT (GLuint res, GLuint src, GLuint num)
Implementation
void glInsertComponentExt(int res, int src, int num) {
final glInsertComponentExtAsFunction = _glInsertComponentExt
.cast<NativeFunction<Void Function(Uint32 res, Uint32 src, Uint32 num)>>()
.asFunction<void Function(int res, int src, int num)>();
return glInsertComponentExtAsFunction(res, src, num);
}