What does HRESULT 0xC0262006 (ERROR_GRAPHICS_PRESENT_OCCLUDED) mean?

 
Previous Next
ERROR_GRAPHICS_PRESENT_MODE_CHANGED ERROR_GRAPHICS_PRESENT_DENIED

ERROR_GRAPHICS_PRESENT_OCCLUDED

ERROR_GRAPHICS_PRESENT_OCCLUDED (0xC0262006) means the application had nothing visible to present because its presentation area was occluded. This is often a normal transient condition when a window is minimized or another exclusive display mode owns the output.

What to check

  • Do not treat it as a rendering or device-loss error; suspend expensive rendering until the window becomes visible again.
  • Resume presentation after the application receives the appropriate visibility, activation, or size change notification.
  • For user reports, confirm whether the window was minimized, on a disconnected monitor, or behind an exclusive full-screen application.

Useful command

Get-CimInstance Win32_VideoController | Select-Object Name, CurrentHorizontalResolution, CurrentVerticalResolution

Microsoft: Direct3D presentation status values

Microsoft: QueryDisplayConfig

Microsoft: Graphics error codes


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