JSSM, a JavaScript state machine - the FSM for FSL
    Preparing search index...

    Interface GPUDeviceLostInfo

    The GPUDeviceLostInfo interface of the WebGPU API represents the object returned when the GPUDevice.lost Promise resolves. This provides information as to why a device has been lost. Available only in secure contexts.

    MDN Reference

    interface GPUDeviceLostInfo {
        message: string;
        reason: GPUDeviceLostReason;
    }
    Index
    message: string

    The message read-only property of the GPUDeviceLostInfo interface provides a human-readable message that explains why the device was lost.

    MDN Reference

    The reason read-only property of the GPUDeviceLostInfo interface defines the reason the device was lost in a machine-readable way.

    MDN Reference