Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libsnes/bsnes/snes/alt/ppu-performance/window/window.hpp
2 views
1
class LayerWindow {
2
public:
3
bool one_enable;
4
bool one_invert;
5
bool two_enable;
6
bool two_invert;
7
8
unsigned mask;
9
10
bool main_enable;
11
bool sub_enable;
12
13
uint8 main[256];
14
uint8 sub[256];
15
16
void render(bool screen);
17
void serialize(serializer&);
18
};
19
20
class ColorWindow {
21
public:
22
bool one_enable;
23
bool one_invert;
24
bool two_enable;
25
bool two_invert;
26
27
unsigned mask;
28
29
unsigned main_mask;
30
unsigned sub_mask;
31
32
uint8 main[256];
33
uint8 sub[256];
34
35
void render(bool screen);
36
void serialize(serializer&);
37
};
38
39