glGlobalAlphaFactorbSun function opengl_glext

void glGlobalAlphaFactorbSun(
  1. int factor
)
GLAPI void APIENTRY glGlobalAlphaFactorbSUN (GLbyte factor)

Implementation

void glGlobalAlphaFactorbSun(int factor) {
  final glGlobalAlphaFactorbSunAsFunction = _glGlobalAlphaFactorbSun
      .cast<NativeFunction<Void Function(Int8 factor)>>()
      .asFunction<void Function(int factor)>();
  return glGlobalAlphaFactorbSunAsFunction(factor);
}