Fix 0XC0262315: Invalid Video Present Source Set on Windows
This DirectX error means your GPU driver or app can't find a valid display source. Usually a driver crash or multi-monitor misconfiguration. Here's how to fix it fast.
Cause 1: GPU Driver Crash or Corrupted Driver State
I know this error makes you want to throw your keyboard. I've been there. The most common trigger is a GPU driver that's crashed or gotten into a bad state — especially after waking from sleep, switching display modes, or running a demanding game or app. The error code 0XC0262315 (ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET) means the graphics subsystem can't find a valid video present source set, which is basically the mapping between your GPU output and the display.
The quickest fix is a full driver reset. Don't just restart the app — that almost never works. Here's what to do:
- Press Win + Ctrl + Shift + B. This resets the graphics driver stack. You'll see a screen flicker and hear a beep. Try your app again.
- If that doesn't work, open Device Manager (Win + X, then M). Expand Display adapters, right-click your GPU (NVIDIA, AMD, or Intel), and select Disable device. Wait 5 seconds, then right-click and Enable device. This forces a full driver reload.
- Still stuck? Use DDU (Display Driver Uninstaller) in Safe Mode to nuke the driver completely, then install the latest driver from NVIDIA or AMD's site. Skip Windows Update for this — it often pushes older or buggy versions.
I once spent two hours debugging this on a client's Windows 11 machine. Turned out Chrome's hardware acceleration had corrupted the video present network. A driver reset fixed it immediately.
Cause 2: Multi-Monitor Configuration Glitch
If you run two or more monitors — especially with different resolutions or refresh rates — the video present source set can get out of sync. This error loves to pop up when you plug in or unplug a monitor while an app is using DirectX, or when you switch between Extend and Duplicate display modes.
The fix is to rebuild the display topology. Here's the quick way:
- Press Win + P and select PC screen only. This collapses everything to one display.
- Open your app that was throwing the error. Does it work now? If yes, great — the issue was multi-monitor interference.
- Press Win + P again and switch back to Extend. Your app should keep working. If it doesn't, you've got a persistent bad config.
For persistent cases, I go nuclear. Open the Registry Editor (Win + R, type regedit), navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers, delete the TdrDelay and TdrDdiDelay values if they exist. Then restart. This removes any custom timeout settings that can corrupt the video present network.Also check your monitor cables. A loose DisplayPort or HDMI cable can cause the GPU to see an intermittent display connection, which scrambles the present source set. Re-seat both ends.
Cause 3: Corrupted or Outdated DirectX Components
Less common, but when the other two fail, it's time to look at DirectX itself. The video present source set is part of the DirectX Graphics Kernel (dxgkrnl.sys). If that file or its supporting DLLs are corrupt, you'll get this error in games, 3D apps, or even Windows transparency effects.
Run the DirectX Diagnostic Tool first: press Win + R, type
dxdiag, and hit Enter. Check the Display tab — look for any warnings under Notes. If you see something like "The file dxgkrnl.sys is corrupted," you've found the culprit.The fix is to reinstall DirectX. But you can't just download it — it's part of Windows. Here's what works:
- Open Command Prompt as Administrator (Win + X, then A).
- Run
. Let it finish and fix any corrupted system files. Restart.sfc /scannow - Then run
. This repairs the component store that DirectX depends on. Restart again.DISM /Online /Cleanup-Image /RestoreHealth - Finally, download and run the DirectX End-User Runtime Web Installer from Microsoft's site. Yes, even on Windows 10/11 — it backfills missing DLLs that some older games and apps need.
If you're on Windows 10 22H2 or Windows 11 23H2, I've seen cases where a recent cumulative update broke the DirectX kernel. Roll back the update via Settings > Windows Update > Update history > Uninstall updates. Remove the most recent one, restart, and test.
Quick-Reference Summary Table
| Cause | Fix | When to Try It |
|---|---|---|
| GPU driver crash | Win+Ctrl+Shift+B, or disable/re-enable GPU in Device Manager, or DDU + clean install | First try — especially after sleep or display mode switch |
| Multi-monitor glitch | Win+P to PC screen only, then extend again; check cables; delete TdrDelay reg keys | If error occurs with 2+ monitors or plugging/unplugging |
| Corrupted DirectX | sfc /scannow, DISM restore, DirectX Runtime installer, or roll back Windows update | When above steps fail, or dxdiag shows corruption |
Most people fix this with the driver reset in under 30 seconds. If you're still seeing 0XC0262315 after trying all three, it's worth checking for a failing GPU. Run a stress test like FurMark or Unigine Heaven — if it crashes with the same error, your hardware might be on its way out. Good luck, and let me know if you get stuck.
Was this solution helpful?