1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-12 07:38:59 +00:00

feat: add GPU shader cache cleanup (NVIDIA, AMD, Intel, DirectX)

Add Clear-GPUShaderCaches function to clean GPU shader caches:
- NVIDIA: DXCache, GLCache, NV_Cache
- AMD: DXCache, GLCache, VkCache
- Intel: ShaderCache
- DirectX: D3DSCache, DirectX Shader Cache
- Vulkan: VulkanCache (pipeline cache)

These caches can grow to 10GB+ and are safe to delete.
They will be rebuilt automatically when needed.

Integrated into main clean.ps1 workflow.
This commit is contained in:
Bhadra
2026-01-12 11:58:20 +05:30
parent b8d8771878
commit 661105670c
2 changed files with 83 additions and 1 deletions

View File

@@ -230,6 +230,9 @@ function Start-Cleanup {
# Browser caches
Clear-BrowserCaches
# GPU shader caches (NVIDIA, AMD, Intel, DirectX)
Clear-GPUShaderCaches
# Application caches
Clear-AppCaches