Flags used with ReportLiveObjects to specify the amount of info to report about an object’s lifetime.
typedef enum DXGI_DEBUG_RLO_FLAGS
{
DXGI_DEBUG_RLO_SUMMARY = 0x1,
DXGI_DEBUG_RLO_DETAIL = 0x2,
DXGI_DEBUG_RLO_ALL = 0x3
} DXGI_DEBUG_RLO_FLAGS;
| Constant | Description |
|---|---|
| DXGI_DEBUG_RLO_SUMMARY | A flag that specifies to obtain a summary about an object’s lifetime. |
| DXGI_DEBUG_RLO_DETAIL | A flag that specifies to obtain detailed info about an object’s lifetime. |
| DXGI_DEBUG_RLO_ALL | A flag that specifies to obtain both a summary and detailed info about an object’s lifetime. |
Use this enumeration with IDXGIDebug::ReportLiveObjects.
Header: Declared in dxgidebug.h.
Library: Use d3d11.lib.