glSecondaryColor3ubExt function opengl_glext

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

Implementation

void glSecondaryColor3ubExt(int red, int green, int blue) {
  final glSecondaryColor3ubExtAsFunction = _glSecondaryColor3ubExt
      .cast<NativeFunction<Void Function(Uint8 red, Uint8 green, Uint8 blue)>>()
      .asFunction<void Function(int red, int green, int blue)>();
  return glSecondaryColor3ubExtAsFunction(red, green, blue);
}