summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/taito_helper.h
blob: 7bdafaffa313b2b6209d9eb763cf176703c3d1a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria
#pragma once


#ifndef __TAITO_HELPER_H__
#define __TAITO_HELPER_H__

/* These scanline drawing routines, currently used by the pc080sn, tc0080vco, tc0150rod and tc0480scp devices, were lifted from Taito F3: optimise / merge ? */

void taitoic_drawscanline( bitmap_ind16 &bitmap, const rectangle &cliprect, int x, int y, const uint16_t *src, int transparent, uint32_t orient, bitmap_ind8 &priority, int pri);

#endif