What the chart needs to know about a GPU device. available is whether it ever got a usable context (a driver that cannot run the program counts as never having one), and lost is the window between a context loss and its restoration.

interface RenderDevice {
    available: boolean;
    lost: boolean;
}

Properties

Properties

available: boolean
lost: boolean