glClipPlanefOes function opengl_glext

void glClipPlanefOes(
  1. int plane,
  2. Pointer<Float> equation
)
GLAPI void APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation)

Implementation

void glClipPlanefOes(int plane, Pointer<Float> equation) {
  final glClipPlanefOesAsFunction = _glClipPlanefOes
      .cast<
        NativeFunction<Void Function(Uint32 plane, Pointer<Float> equation)>
      >()
      .asFunction<void Function(int plane, Pointer<Float> equation)>();
  return glClipPlanefOesAsFunction(plane, equation);
}