chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.systeminfo / GPUDevice

GPUDevice

data class GPUDevice

Describes a single graphics processor (GPU).

Constructors

<init>

Describes a single graphics processor (GPU).

GPUDevice(vendorId: Double, deviceId: Double, subSysId: Double? = null, revision: Double? = null, vendorString: String, deviceString: String, driverVendor: String, driverVersion: String)

Properties

deviceId

PCI ID of the GPU device, if available; 0 otherwise.

val deviceId: Double

deviceString

String description of the GPU device, if the PCI ID is not available.

val deviceString: String

driverVendor

String description of the GPU driver vendor.

val driverVendor: String

driverVersion

String description of the GPU driver version.

val driverVersion: String

revision

Revision of the GPU, only available on Windows.

val revision: Double?

subSysId

Sub sys ID of the GPU, only available on Windows.

val subSysId: Double?

vendorId

PCI ID of the GPU vendor, if available; 0 otherwise.

val vendorId: Double

vendorString

String description of the GPU vendor, if the PCI ID is not available.

val vendorString: String