glSecondaryColor3hNv function opengl_glext

void glSecondaryColor3hNv(
  1. int red,
  2. int green,
  3. int blue
)
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);
}