summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/generic.h
blob: 3d90edecb38126577b1e9a3ff884239b4adf7a3e (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
45
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria
/*********************************************************************

    generic.h

    Generic simple video functions.

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

#ifndef MAME_EMU_VIDEO_GENERIC_H
#define MAME_EMU_VIDEO_GENERIC_H

#pragma once



/***************************************************************************
    COMMON GRAPHICS LAYOUTS
***************************************************************************/

extern const gfx_layout gfx_8x8x1;
extern const gfx_layout gfx_8x8x2_planar;
extern const gfx_layout gfx_8x8x3_planar;
extern const gfx_layout gfx_8x8x4_planar;
extern const gfx_layout gfx_8x8x5_planar;
extern const gfx_layout gfx_8x8x6_planar;

extern const gfx_layout gfx_16x16x4_planar;

extern const gfx_layout gfx_8x8x4_packed_msb;
extern const gfx_layout gfx_8x8x4_packed_lsb;
extern const gfx_layout gfx_8x8x8_raw;

extern const gfx_layout gfx_16x16x4_packed_msb;
extern const gfx_layout gfx_16x16x4_packed_lsb;
extern const gfx_layout gfx_16x16x8_raw;

extern const gfx_layout gfx_8x8x4_row_2x2_group_packed_msb;
extern const gfx_layout gfx_8x8x4_row_2x2_group_packed_lsb;

extern const gfx_layout gfx_8x8x4_col_2x2_group_packed_msb;
extern const gfx_layout gfx_8x8x4_col_2x2_group_packed_lsb;

#endif  /* MAME_EMU_VIDEO_GENERIC_H */