glSecondaryColor3us function opengl_glext
GLAPI void APIENTRY glSecondaryColor3us (GLushort red, GLushort green, GLushort blue)
Implementation
void glSecondaryColor3us(int red, int green, int blue) {
final glSecondaryColor3usAsFunction = _glSecondaryColor3us
.cast<
NativeFunction<Void Function(Uint16 red, Uint16 green, Uint16 blue)>
>()
.asFunction<void Function(int red, int green, int blue)>();
return glSecondaryColor3usAsFunction(red, green, blue);
}