GPU_PROCESS_EXITED property
final
Indicates that the GPU process ended unexpectedly. The failed process is recreated automatically. Your application does not need to handle recovery for this event.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_PROCESS_FAILED_KIND_GPU_PROCESS_EXITED)
Implementation
static final GPU_PROCESS_EXITED = ProcessFailedKind._internalMultiPlatform(
'GPU_PROCESS_EXITED',
() {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 6;
default:
break;
}
return null;
},
);