Simplify saving CP state

Rather than makring some parts of VertexLoaderManager dirty in some places and some in others, do it all in VideoState. Also, since CPState no longer contains pointers/non-CP data after d039b1bc0d, we can just use p.Do on it instead of manually saving each field.
This commit is contained in:
Pokechu22
2022-10-07 12:25:04 -07:00
parent 05f3bbfa4d
commit ffed23c059
5 changed files with 9 additions and 25 deletions

View File

@ -123,6 +123,7 @@ struct entry
void MarkAllDirty()
{
g_bases_dirty = true;
g_main_vat_dirty = BitSet8::AllTrue(8);
g_preprocess_vat_dirty = BitSet8::AllTrue(8);
}