glColor4ubVertex2fSun function opengl_glext
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);
}