Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libsnes/bsnes/snes/alt/ppu-performance/cache/cache.hpp
2 views
1
class Cache {
2
public:
3
uint8 *tiledata[3];
4
uint8 *tilevalid[3];
5
6
uint8* tile_2bpp(unsigned tile);
7
uint8* tile_4bpp(unsigned tile);
8
uint8* tile_8bpp(unsigned tile);
9
uint8* tile(unsigned bpp, unsigned tile);
10
11
void serialize(serializer&);
12
Cache(PPU &self);
13
~Cache();
14
15
PPU &self;
16
friend class PPU;
17
};
18
19