pl.wendigo.chrome.api.systeminfo / GPUDevice

GPUDevice

data class GPUDevice (source)

Describes a single graphics processor (GPU).

Link
SystemInfo#GPUDevice type documentation.

Constructors

<init>

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

Describes a single graphics processor (GPU).

Properties

deviceId

val deviceId: Double

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

deviceString

val deviceString: String

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

driverVendor

val driverVendor: String

String description of the GPU driver vendor.

driverVersion

val driverVersion: String

String description of the GPU driver version.

revision

val revision: Double?

Revision of the GPU, only available on Windows.

subSysId

val subSysId: Double?

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

vendorId

val vendorId: Double

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

vendorString

val vendorString: String

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