blob: 5f2ef27966cad241c9dd3bb6fac39deba05092ef (
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
|
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria
/*********************************************************************
generic.h
Generic simple video functions.
*********************************************************************/
#pragma once
#ifndef __VIDEO_GENERIC_H__
#define __VIDEO_GENERIC_H__
/***************************************************************************
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;
#endif /* __VIDEO_GENERIC_H__ */
|