glAlphaFunc function

void glAlphaFunc(
  1. int func,
  2. double ref
)
GLAPI void GLAPIENTRY glAlphaFunc (GLenum func, GLclampf ref)

Implementation

void glAlphaFunc(int func, double ref) {
  final glAlphaFuncLookupFunction = libGL.lookupFunction<
      Void Function(Uint32 func, Float ref),
      void Function(int func, double ref)>('glAlphaFunc');
  return glAlphaFuncLookupFunction(func, ref);
}