Fix clearing bug, add FIFO_RELAXED flag, etc

This commit is contained in:
Henrik Rydgard 2016-01-06 23:08:26 +01:00
parent ddb36a35a0
commit 01e3fbae95
13 changed files with 97 additions and 72 deletions

View file

@ -89,6 +89,10 @@ TextureCacheVulkan::~TextureCacheVulkan() {
Clear(true);
}
void TextureCacheVulkan::DownloadFramebufferForClut(u32 clutAddr, u32 bytes) {
}
static u32 EstimateTexMemoryUsage(const TextureCacheVulkan::TexCacheEntry *entry) {
const u16 dim = entry->dim;
const u8 dimW = ((dim >> 0) & 0xf);