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