glSecondaryColor3sExt function opengl_glext
GLAPI void APIENTRY glSecondaryColor3sEXT (GLshort red, GLshort green, GLshort blue)
Implementation
void glSecondaryColor3sExt(int red, int green, int blue) {
final glSecondaryColor3sExtAsFunction = _glSecondaryColor3sExt
.cast<NativeFunction<Void Function(Int16 red, Int16 green, Int16 blue)>>()
.asFunction<void Function(int red, int green, int blue)>();
return glSecondaryColor3sExtAsFunction(red, green, blue);
}