blob: 9c1f30bc7b33da8c5fce327fcd9d66db29e2b6bf (
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
|
// 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;
#endif /* MAME_EMU_VIDEO_GENERIC_H */
|