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