menu
GpuSurfaceStatus
import { GpuSurfaceStatus } from "destack:gpu/binding";
Surface lifecycle status.
1export enum GpuSurfaceStatus {2 Unconfigured = 1,3 Good = 2,4 Suboptimal = 3,5 Outdated = 4,6 Lost = 5,7}Variants
Unconfigured = 1Surface is open but not configured.
Good = 2Surface is configured and ready.
Suboptimal = 3Surface is configured but should be reconfigured soon.
Outdated = 4Surface configuration is outdated.
Lost = 5Surface was lost.