mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
13 lines
269 B
C++
13 lines
269 B
C++
struct Mosaic {
|
|
//mosaic.cpp
|
|
alwaysinline auto enable() const -> bool;
|
|
alwaysinline auto voffset() const -> uint;
|
|
auto scanline() -> void;
|
|
auto power() -> void;
|
|
|
|
//serialization.cpp
|
|
auto serialize(serializer&) -> void;
|
|
|
|
uint5 size;
|
|
uint5 vcounter;
|
|
};
|