glIsEnabled function

int glIsEnabled(
  1. int cap
)
GLAPI GLboolean GLAPIENTRY glIsEnabled (GLenum cap)

Implementation

int glIsEnabled(int cap) {
  final glIsEnabledLookupFunction =
      libGL.lookupFunction<Uint8 Function(Uint32 cap), int Function(int cap)>(
          'glIsEnabled');
  return glIsEnabledLookupFunction(cap);
}