glSecondaryColor3ub function opengl_glext

void glSecondaryColor3ub(
  1. int red,
  2. int green,
  3. int blue
)
GLAPI void APIENTRY glSecondaryColor3ub (GLubyte red, GLubyte green, GLubyte blue)

Implementation

void glSecondaryColor3ub(int red, int green, int blue) {
  final glSecondaryColor3ubAsFunction = _glSecondaryColor3ub
      .cast<NativeFunction<Void Function(Uint8 red, Uint8 green, Uint8 blue)>>()
      .asFunction<void Function(int red, int green, int blue)>();
  return glSecondaryColor3ubAsFunction(red, green, blue);
}