summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/rendlay.h
blob: 1267be327732fcafa817c6480af6d9df9f28f3af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************

    rendlay.h

    Core rendering layout parser and manager.

***************************************************************************/

#ifndef __RENDLAY_H__
#define __RENDLAY_H__

//**************************************************************************
//  GLOBAL VARIABLES
//**************************************************************************

// no screens layouts
extern const internal_layout layout_noscreens;   // for screenless systems

// single screen layouts
extern const internal_layout layout_horizont;    // horizontal 4:3 screens
extern const internal_layout layout_vertical;    // vertical 4:3 screens

// 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
extern const internal_layout layout_dualhuov;    // dual 4:3 screens below and above

// triple screen layouts
extern const internal_layout layout_triphsxs;    // triple 4:3 screens side-by-side

// quad screen layouts
extern const internal_layout layout_quadhsxs;    // quad 4:3 screens side-by-side

// LCD screen layouts
extern const internal_layout layout_lcd;         // generic 1:1 lcd screen layout
extern const internal_layout layout_lcd_rot;     // same, for use with ROT90 or ROT270

// SVG screen layouts
extern const internal_layout layout_svg;         // generic 1:1 lcd screen layout


#endif  // __RENDLAY_H__