eglDestroyContext function
Implementation
void eglDestroyContext(
Pointer<Void> display,
Pointer<Void> context,
) {
final nativeCallResult = _libEGL!.eglDestroyContext(display, context) == 1;
if (nativeCallResult) {
return;
}
throw EglException(
'Failed to destroy context [$display], surface [$context].');
}