glIndexFuncExt function opengl_glext

void glIndexFuncExt(
  1. int func,
  2. double ref
)
GLAPI void APIENTRY glIndexFuncEXT (GLenum func, GLclampf ref)

Implementation

void glIndexFuncExt(int func, double ref) {
  final glIndexFuncExtAsFunction = _glIndexFuncExt
      .cast<NativeFunction<Void Function(Uint32 func, Float ref)>>()
      .asFunction<void Function(int func, double ref)>();
  return glIndexFuncExtAsFunction(func, ref);
}