mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
37 lines
531 B
C++
Executable file
37 lines
531 B
C++
Executable file
class LayerWindow {
|
|
public:
|
|
bool one_enable;
|
|
bool one_invert;
|
|
bool two_enable;
|
|
bool two_invert;
|
|
|
|
unsigned mask;
|
|
|
|
bool main_enable;
|
|
bool sub_enable;
|
|
|
|
uint8 main[256];
|
|
uint8 sub[256];
|
|
|
|
void render(bool screen);
|
|
void serialize(serializer&);
|
|
};
|
|
|
|
class ColorWindow {
|
|
public:
|
|
bool one_enable;
|
|
bool one_invert;
|
|
bool two_enable;
|
|
bool two_invert;
|
|
|
|
unsigned mask;
|
|
|
|
unsigned main_mask;
|
|
unsigned sub_mask;
|
|
|
|
uint8 main[256];
|
|
uint8 sub[256];
|
|
|
|
void render(bool screen);
|
|
void serialize(serializer&);
|
|
};
|