Enum DxgiResourceEvictionPriority
Determines when a resource can be evicted from memory.
Namespace: JeremyAnsel.DirectX.Dxgi
Assembly: JeremyAnsel.DirectX.Dxgi.dll
Syntax
public enum DxgiResourceEvictionPriority
Fields
Name | Description |
---|---|
High | The eviction priority of the resource is high. The resource is placed in its preferred location instead of a low-priority or normal-priority resource. |
Low | The eviction priority of the resource is low. The placement of the resource is not critical, and minimal work is performed to find a location for the resource. |
Maximum | The resource is evicted from memory only if there is no other way of resolving the memory requirement. |
Minimum | The resource is unused and can be evicted as soon as another resource requires the memory that the resource occupies. |
Normal | The eviction priority of the resource is normal. The placement of the resource is important, but not critical, for performance. The resource is placed in its preferred location instead of a low-priority resource. |
Unspecified | Not specified. |