What does HRESULT 0xC0262112 (ERROR_GRAPHICS_ALLOCATION_CLOSED) mean?

 
Previous Next
ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE

ERROR_GRAPHICS_ALLOCATION_CLOSED

ERROR_GRAPHICS_ALLOCATION_CLOSED (0xC0262112) means the caller referenced an allocation after it was permanently closed. This is a resource-lifetime error, often caused by stale handles or asynchronous work that outlived the resource owner.

What to check

  • Ensure queued GPU work cannot refer to resources after their final release or close operation.
  • Invalidate cached handles when the owning device, swap chain, or adapter is destroyed.
  • After adapter reset, rebuild the resource graph from the new device state.

Useful command

Get-WinEvent -LogName System -MaxEvents 150 | Where-Object { $_.ProviderName -match 'Display|dxgkrnl' }

Microsoft: WDDM timeout detection and recovery

Microsoft: Display/Graphics overview

Microsoft: Graphics error codes


Looking for a different code? Search another status or error code.