mirror of
https://github.com/Michael-Prince-Sharpe/bsnes-classic.git
synced 2025-04-02 10:21:42 -04:00
16 lines
306 B
C++
16 lines
306 B
C++
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;
|
|
};
|