Convert some VideoCommon stuff to BitSet.

Now with a minor performance improvement removed for no reason.
This commit is contained in:
comex
2014-10-21 20:42:55 -04:00
parent f51c233a08
commit b29e5146ec
4 changed files with 42 additions and 62 deletions

View File

@ -4,6 +4,7 @@
#pragma once
#include "Common/BitSet.h"
#include "Common/CommonTypes.h"
// Vertex array numbers
@ -252,7 +253,7 @@ struct CPState final
VAT vtx_attr[8];
// Attributes that actually belong to VertexLoaderManager:
int attr_dirty; // bitfield
BitSet32 attr_dirty;
VertexLoader* vertex_loaders[8];
};