The driver uninstaller should always clean out such caches, but the users themselfs should also learn(about time) that convenience features don't come for free.
Therefore you need to keep cleaning shader cache more often, most obviously when reinstalling drivers or programs.
To make it easier you can use batch scripts on windows like this:
Therefore you need to keep cleaning shader cache more often, most obviously when reinstalling drivers or programs.
To make it easier you can use batch scripts on windows like this:
Code:
@echo off
echo.
echo.
echo ***** AMD DXCache Cleanup *****
echo.
echo.
set folder="C:\Users\USERNAME\AppData\Local\AMD\DxCache"
echo Selected folder is %folder% - press any key if ok
echo.
explorer %folder%
pause
echo.
cd /d %folder%
for /F "delims=" %%i in ('dir /b') do (rmdir "%%i" /s/q || del "%%i" /s/q)
echo.
timeout 5Code:
@echo off
echo.
echo.
echo ***** AMD GLCache Cleanup *****
echo.
echo.
set folder="C:\Users\USERNAME\AppData\Local\AMD\GLCache"
echo Selected folder is %folder% - press any key if ok
echo.
explorer %folder%
pause
echo.
cd /d %folder%
for /F "delims=" %%i in ('dir /b') do (rmdir "%%i" /s/q || del "%%i" /s/q)
echo.
timeout 5
