glAlphaFuncQcom function

void glAlphaFuncQcom(
  1. int func,
  2. double ref
)
define glAlphaFuncQCOM GLEW_GET_FUN(__glewAlphaFuncQCOM)
GLEW_FUN_EXPORT PFNGLALPHAFUNCQCOMPROC __glewAlphaFuncQCOM
typedef void (GLAPIENTRY * PFNGLALPHAFUNCQCOMPROC) (GLenum func, GLclampf ref)

Implementation

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