glMap1xOes function opengl_glext

void glMap1xOes(
  1. int target,
  2. int u1,
  3. int u2,
  4. int stride,
  5. int order,
  6. int points,
)
GLAPI void APIENTRY glMap1xOES (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GLint order, GLfixed points)

Implementation

void glMap1xOes(int target, int u1, int u2, int stride, int order, int points) {
  final glMap1xOesAsFunction = _glMap1xOes
      .cast<
        NativeFunction<
          Void Function(
            Uint32 target,
            Int32 u1,
            Int32 u2,
            Int32 stride,
            Int32 order,
            Int32 points,
          )
        >
      >()
      .asFunction<
        void Function(
          int target,
          int u1,
          int u2,
          int stride,
          int order,
          int points,
        )
      >();
  return glMap1xOesAsFunction(target, u1, u2, stride, order, points);
}