diff options
author | 2022-06-24 06:56:27 +1000 | |
---|---|---|
committer | 2022-06-24 07:05:48 +1000 | |
commit | af97d42dd31cdd7da154108562bb9d08043757b5 (patch) | |
tree | cc73e8e44dd26fb21b9f648c83579ba1320a8179 /src/emu/layout/generic.h | |
parent | e50b51fe7810715e5002a0ab41bbe6dd1db5420d (diff) |
bus/nubus: More Mac video card improvements.
Started implementing the Macintosh Display Card CRTC. It gives correct
resolutions, although refresh rates are incorrect. Added machine
configuration settings allowing several monitors to be selected.
Implemented the Macintosh Display Card's packed RGB mode. The
base/stride in RGB mode make more sense with this implemented.
Cleaned up the code for the SuperMac Spectrum cards, and fixed the
garbage at the bottom of the screen on the Spectrum/8.
Put a layout with views for common monitor aspect ratios in a place
where cards can use it. This is especially useful for the NuBus cards
that can support portrait monitors.
Diffstat (limited to 'src/emu/layout/generic.h')
-rw-r--r-- | src/emu/layout/generic.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/layout/generic.h b/src/emu/layout/generic.h index 502e38e0765..4249c3ef68b 100644 --- a/src/emu/layout/generic.h +++ b/src/emu/layout/generic.h @@ -21,6 +21,9 @@ // no screens layouts extern const internal_layout layout_noscreens; // for screenless systems +// single screen layouts +extern const internal_layout layout_monitors; // common monitor aspect ratios + // dual screen layouts extern const internal_layout layout_dualhsxs; // dual 4:3 screens side-by-side extern const internal_layout layout_dualhovu; // dual 4:3 screens above and below |