glReplacementCodeuiVertex3fSun function opengl_glext

void glReplacementCodeuiVertex3fSun(
  1. int rc,
  2. double x,
  3. double y,
  4. double z,
)
GLAPI void APIENTRY glReplacementCodeuiVertex3fSUN (GLuint rc, GLfloat x, GLfloat y, GLfloat z)

Implementation

void glReplacementCodeuiVertex3fSun(int rc, double x, double y, double z) {
  final glReplacementCodeuiVertex3fSunAsFunction =
      _glReplacementCodeuiVertex3fSun
          .cast<
            NativeFunction<Void Function(Uint32 rc, Float x, Float y, Float z)>
          >()
          .asFunction<void Function(int rc, double x, double y, double z)>();
  return glReplacementCodeuiVertex3fSunAsFunction(rc, x, y, z);
}