summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/drawgfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/drawgfx.cpp')
-rw-r--r--src/emu/drawgfx.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/emu/drawgfx.cpp b/src/emu/drawgfx.cpp
index edbfa1ec306..eff4e46f2cf 100644
--- a/src/emu/drawgfx.cpp
+++ b/src/emu/drawgfx.cpp
@@ -1919,6 +1919,18 @@ void copybitmap_trans(bitmap_rgb32 &dest, const bitmap_rgb32 &src, int flipx, in
}
+/*-------------------------------------------------
+ copybitmap_transalphpa - copy from one bitmap
+ to another, copying all unclipped pixels except
+ those with an alpha value of zero
+-------------------------------------------------*/
+
+void copybitmap_transalpha(bitmap_rgb32 &dest, const bitmap_rgb32 &src, int flipx, int flipy, s32 destx, s32 desty, const rectangle &cliprect)
+{
+ DECLARE_NO_PRIORITY;
+ COPYBITMAP_CORE(u32, PIXEL_OP_COPY_TRANSALPHA, NO_PRIORITY);
+}
+
/***************************************************************************
COPYSCROLLBITMAP IMPLEMENTATIONS