// 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__ */