glSecondaryColor3hNv function opengl_glext
GLAPI void APIENTRY glSecondaryColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue)
Implementation
void glSecondaryColor3hNv(int red, int green, int blue) {
final glSecondaryColor3hNvAsFunction = _glSecondaryColor3hNv
.cast<
NativeFunction<Void Function(Uint16 red, Uint16 green, Uint16 blue)>
>()
.asFunction<void Function(int red, int green, int blue)>();
return glSecondaryColor3hNvAsFunction(red, green, blue);
}