glViewportIndexedf function opengl_glext
GLAPI void APIENTRY glViewportIndexedf (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h)
Implementation
void glViewportIndexedf(int index, double x, double y, double w, double h) {
final glViewportIndexedfAsFunction = _glViewportIndexedf
.cast<
NativeFunction<
Void Function(Uint32 index, Float x, Float y, Float w, Float h)
>
>()
.asFunction<
void Function(int index, double x, double y, double w, double h)
>();
return glViewportIndexedfAsFunction(index, x, y, w, h);
}