HWRenderer/TextureCache: Flush the texture cache when bit 16 of register 0x80 is set to 1.

This commit is contained in:
Subv 2015-12-06 13:46:43 -05:00
parent 644d1e7ca3
commit 046daac427
2 changed files with 7 additions and 0 deletions

View file

@ -235,6 +235,7 @@ struct Regs {
BitField< 0, 1, u32> texture0_enable;
BitField< 1, 1, u32> texture1_enable;
BitField< 2, 1, u32> texture2_enable;
BitField<16, 1, u32> clear_texture_cache;
};
TextureConfig texture0;
INSERT_PADDING_WORDS(0x8);

View file

@ -281,6 +281,12 @@ void RasterizerOpenGL::NotifyPicaRegisterChanged(u32 id) {
case PICA_REG_INDEX(tev_combiner_buffer_color):
SyncCombinerColor();
break;
case PICA_REG_INDEX(clear_texture_cache):
// Clear the texture cache when this bit is 1
if (regs.clear_texture_cache)
res_cache.FullFlush();
break;
}
}