lsnes/snes/alt/ppu-performance/cache/cache.hpp
2013-05-03 17:47:34 +03:00

16 lines
306 B
C++
Executable file

class Cache {
public:
uint8 *tiledata[3];
uint8 *tilevalid[3];
uint8* tile_2bpp(unsigned tile);
uint8* tile_4bpp(unsigned tile);
uint8* tile_8bpp(unsigned tile);
uint8* tile(unsigned bpp, unsigned tile);
void serialize(serializer&);
Cache(PPU &self);
PPU &self;
friend class PPU;
};