| Previous | Next |
| D3D11_ERROR_DEFERRED_CONTEXT_MAP_WITHOUT_INITIAL_DISCARD | D3D12_ERROR_DRIVER_VERSION_MISMATCH |
D3D12_ERROR_ADAPTER_NOT_FOUND
What Windows rejected: adapter not found
Windows reports D3D12_ERROR_ADAPTER_NOT_FOUND (0x887E0001) at the d3d checkpoint. Here, a cached PSO or pipeline-library blob belongs to a different graphics adapter. That narrows the first investigation to cached Direct3D 12 pipeline state identity instead of the entire GPU stack.
D3D12_ERROR_ADAPTER_NOT_FOUND: The debug layer should be enabled in a development build before changing resource lifetimes. For D3D12_ERROR_ADAPTER_NOT_FOUND, These results usually identify a caller contract or cache-compatibility boundary, not a request to reinstall DirectX. For D3D12_ERROR_ADAPTER_NOT_FOUND, the built-in one-line message identifies the immediate result; diagnosis also needs the producing API, object ownership and the display generation current at the time.
Build a useful diagnostic record
| Capture item | Why it matters for D3D12_ERROR_ADAPTER_NOT_FOUND |
|---|---|
| Object identity | cached Direct3D 12 pipeline state identity |
| Rejected boundary | a cached PSO or pipeline-library blob belongs to a different graphics adapter |
| Decisive capture | adapter LUID, vendor/device/subsystem IDs, cache header, pipeline-library version and current device identity |
| Current graph state | Direct3D device plus the descriptor, resource or cached pipeline object supplied by the application |
| Supporting trace | Direct3D debug-layer output, object creation stacks, normalized descriptors, feature level and adapter/driver identity |
For D3D12_ERROR_ADAPTER_NOT_FOUND, preserve the unsigned HRESULT, symbolic name, first failing API and timestamp in one record. If cleanup later fails too, keep that secondary result separately from D3D12_ERROR_ADAPTER_NOT_FOUND.
Separate state from capability
- Freeze the
D3D12_ERROR_ADAPTER_NOT_FOUNDgeneration. Record adapter LUID, vendor/device/subsystem IDs, cache header, pipeline-library version and current device identity. Before diagnosingD3D12_ERROR_ADAPTER_NOT_FOUND, do not resize, hot-plug, recreate or release the object under examination. - Run the narrow
D3D12_ERROR_ADAPTER_NOT_FOUNDcomparison. move the cache between two adapters while rebuilding from source on the second adapter as the control. During theD3D12_ERROR_ADAPTER_NOT_FOUNDcomparison, keep every driver, monitor, resource format and unrelated policy unchanged. - Observe the layer after
D3D12_ERROR_ADAPTER_NOT_FOUND. ForD3D12_ERROR_ADAPTER_NOT_FOUND, if the exact check passes, record the next HRESULT or visible outcome. A different downstream result shows that theD3D12_ERROR_ADAPTER_NOT_FOUNDboundary was crossed. - Repeat
D3D12_ERROR_ADAPTER_NOT_FOUNDthrough a lifecycle transition. ForD3D12_ERROR_ADAPTER_NOT_FOUND, exercise one relevant resize, mode switch, device recreation, hot-plug or session change and confirm that this result does not reuse stale handles.
The comparison with D3D12_ERROR_DRIVER_VERSION_MISMATCH is especially useful: D3D12_ERROR_DRIVER_VERSION_MISMATCH keeps the adapter but changes the driver/runtime version. For D3D12_ERROR_ADAPTER_NOT_FOUND, recording both names prevents a broad “graphics error” label from merging distinct ownership, capability and lifetime problems.
Verify the repaired path
Key cached pipeline data by adapter identity and fall back to rebuilding the PSO when the key changes. Repair of D3D12_ERROR_ADAPTER_NOT_FOUND is complete only when the original call succeeds or returns its documented nonfatal status and the same lifetime test remains correct after a second display transition.
- The
D3D12_ERROR_ADAPTER_NOT_FOUNDtrace identifies one producing API and one current graphics object, rather than only the final UI symptom. - The passing run changes exactly the condition described for
D3D12_ERROR_ADAPTER_NOT_FOUND; unrelated adapter, monitor and application state remains unchanged. - For
D3D12_ERROR_ADAPTER_NOT_FOUND, debug-layer, ETW or driver diagnostics no longer report the rejected cached Direct3D 12 pipeline state identity contract during the same scenario. - The application handles recurrence of
D3D12_ERROR_ADAPTER_NOT_FOUNDwithout an unbounded retry loop, leaked resource, duplicate composition target or stale topology handle.
Implementation notes for D3D12_ERROR_ADAPTER_NOT_FOUND
For D3D12_ERROR_ADAPTER_NOT_FOUND, log Direct3D debug-layer output, object creation stacks, normalized descriptors, feature level and adapter/driver identity. When the D3D12_ERROR_ADAPTER_NOT_FOUND path returns a count, size, status flag or replacement object, retain it even on a nonfatal result because it can direct the next call.
A production fallback for D3D12_ERROR_ADAPTER_NOT_FOUND should be explicit: pause rendering, re-enumerate, rebuild one cache entry, recreate a device, or decline a protected path only when this layer calls for that action. Reinstalling every display component, deleting all caches or forcing a resolution change is not an evidence-based fix for D3D12_ERROR_ADAPTER_NOT_FOUND.
Technical references
- Microsoft: Direct3D 10 return codes — background for the cached Direct3D 12 pipeline state identity boundary involved in
D3D12_ERROR_ADAPTER_NOT_FOUND. - Microsoft: Direct3D 11 return codes — background for the cached Direct3D 12 pipeline state identity boundary involved in
D3D12_ERROR_ADAPTER_NOT_FOUND. - Microsoft: Direct3D 12 return codes — background for the cached Direct3D 12 pipeline state identity boundary involved in
D3D12_ERROR_ADAPTER_NOT_FOUND. - Microsoft: Use the Direct3D 11 debug layer — background for the cached Direct3D 12 pipeline state identity boundary involved in
D3D12_ERROR_ADAPTER_NOT_FOUND.
Looking for a different code? Search another status or error code.