glViewportIndexedf function opengl_glext

void glViewportIndexedf(
  1. int index,
  2. double x,
  3. double y,
  4. double w,
  5. double h,
)
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);
}