mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-24 07:02:27 +01:00
byuu says: So, this WIP starts work on something new for higan. Obviously, I can't keep it a secret until it's ready, because I want to continue daily WIP releases, and of course, solicit feedback as I go along.
14 lines
233 B
C++
14 lines
233 B
C++
struct Video {
|
|
Video();
|
|
|
|
auto power() -> void;
|
|
auto refresh() -> void;
|
|
|
|
private:
|
|
unique_pointer<uint32[]> output;
|
|
unique_pointer<uint32[]> paletteLiteral;
|
|
unique_pointer<uint32[]> paletteStandard;
|
|
};
|
|
|
|
extern Video video;
|