mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
Fix a major speed regression from r6288:
Upon texture reloading, the cache entry hash wasn't updated and thus we effectively disabled any texture caching in that case. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6308 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
56e79aa87d
commit
52cd3aee95
2 changed files with 33 additions and 30 deletions
|
@ -34,8 +34,8 @@ public:
|
|||
|
||||
unsigned int mipLevels;
|
||||
|
||||
bool isRenderTarget;
|
||||
bool isDynamic; // mofified from cpu
|
||||
bool isRenderTarget; // copied from EFB
|
||||
bool isDynamic; // Used for hybrid EFB copies to enable checks for CPU modifications
|
||||
bool isNonPow2; // doesn't seem to be used anywhere
|
||||
|
||||
//TCacheEntryBase()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue