glColor4ubVertex2fSun function opengl_glext

void glColor4ubVertex2fSun(
  1. int r,
  2. int g,
  3. int b,
  4. int a,
  5. double x,
  6. double y,
)
GLAPI void APIENTRY glColor4ubVertex2fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y)

Implementation

void glColor4ubVertex2fSun(int r, int g, int b, int a, double x, double y) {
  final glColor4ubVertex2fSunAsFunction = _glColor4ubVertex2fSun
      .cast<
        NativeFunction<
          Void Function(Uint8 r, Uint8 g, Uint8 b, Uint8 a, Float x, Float y)
        >
      >()
      .asFunction<
        void Function(int r, int g, int b, int a, double x, double y)
      >();
  return glColor4ubVertex2fSunAsFunction(r, g, b, a, x, y);
}