glReplacementCodeuiColor4ubVertex3fSun function opengl_glext

void glReplacementCodeuiColor4ubVertex3fSun(
  1. int rc,
  2. int r,
  3. int g,
  4. int b,
  5. int a,
  6. double x,
  7. double y,
  8. double z,
)
GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fSUN (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z)

Implementation

void glReplacementCodeuiColor4ubVertex3fSun(
  int rc,
  int r,
  int g,
  int b,
  int a,
  double x,
  double y,
  double z,
) {
  final glReplacementCodeuiColor4ubVertex3fSunAsFunction =
      _glReplacementCodeuiColor4ubVertex3fSun
          .cast<
            NativeFunction<
              Void Function(
                Uint32 rc,
                Uint8 r,
                Uint8 g,
                Uint8 b,
                Uint8 a,
                Float x,
                Float y,
                Float z,
              )
            >
          >()
          .asFunction<
            void Function(
              int rc,
              int r,
              int g,
              int b,
              int a,
              double x,
              double y,
              double z,
            )
          >();
  return glReplacementCodeuiColor4ubVertex3fSunAsFunction(
    rc,
    r,
    g,
    b,
    a,
    x,
    y,
    z,
  );
}