Disable clearing all the GPU's cache on sceKernelCacheWritebackAll, the performance penalty was too big.
This commit is contained in:
parent
6717359270
commit
d657fc9fa2
1 changed files with 3 additions and 1 deletions
|
@ -246,7 +246,9 @@ int sceKernelDcacheInvalidateRange(u32 addr, int size)
|
|||
}
|
||||
int sceKernelDcacheWritebackAll()
|
||||
{
|
||||
gpu->InvalidateCache(0, -1);
|
||||
// Some games seem to use this a lot, it doesn't make sense
|
||||
// to zap the whole texture cache.
|
||||
// gpu->InvalidateCache(0, -1);
|
||||
return 0;
|
||||
}
|
||||
int sceKernelDcacheWritebackRange(u32 addr, int size)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue