Enum DxgiGraphicsPreemptionGranularity
Identifies the granularity at which the graphics processing unit (GPU) can be preempted from performing its current graphics rendering task.
Namespace: JeremyAnsel.DirectX.Dxgi
Assembly: JeremyAnsel.DirectX.Dxgi.dll
Syntax
public enum DxgiGraphicsPreemptionGranularity
Fields
| Name | Description |
|---|---|
| DmaBufferBoundary | Indicates the preemption granularity as a DMA buffer. |
| InstructionBoundary | Indicates the preemption granularity as a graphics instruction. A graphics instruction operates on a pixel. |
| PixelBoundary | Indicates the preemption granularity as a pixel. A pixel is a part of a triangle. |
| PrimitiveBoundary | Indicates the preemption granularity as a graphics primitive. A primitive is a section in a DMA buffer and can be a group of triangles. |
| TriangleBoundary | Indicates the preemption granularity as a triangle. A triangle is a part of a primitive. |