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