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