menu

GpuAdapterType

import { GpuAdapterType } from "destack:gpu/binding";

GPU adapter category.

language/library/src/gpu/binding/adapter.ds:26:37
1export enum GpuAdapterType {2    Other = 0,3    Integrated = 1,4    Discrete = 2,5    Virtual = 3,6    Cpu = 4,7}

Variants

Other = 0

Other or unknown adapter type.

Integrated = 1

Integrated GPU.

Discrete = 2

Discrete GPU.

Virtual = 3

Virtual or passthrough adapter.

Cpu = 4

Software or CPU adapter.