summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tecmo_mix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/tecmo_mix.cpp')
-rw-r--r--src/mame/video/tecmo_mix.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/mame/video/tecmo_mix.cpp b/src/mame/video/tecmo_mix.cpp
index 7de58739f22..e89423232c2 100644
--- a/src/mame/video/tecmo_mix.cpp
+++ b/src/mame/video/tecmo_mix.cpp
@@ -42,47 +42,6 @@ void tecmo_mix_device::device_reset()
{
}
-
-
-void tecmo_mix_device::set_mixer_shifts(int sprpri_shift, int sprbln_shift, int sprcol_shift)
-{
- m_sprpri_shift = sprpri_shift;
- m_sprbln_shift = sprbln_shift;
- m_sprcol_shift = sprcol_shift;
-}
-
-void tecmo_mix_device::set_blendcols(int bgblend_comp, int fgblend_comp, int txblend_comp, int spblend_comp)
-{
- m_bgblend_comp = bgblend_comp;
- m_fgblend_comp = fgblend_comp;
- m_txblend_comp = txblend_comp;
- m_spblend_comp = spblend_comp;
-}
-
-void tecmo_mix_device::set_regularcols(int bgregular_comp, int fgregular_comp, int txregular_comp, int spregular_comp)
-{
- m_bgregular_comp = bgregular_comp;
- m_fgregular_comp = fgregular_comp;
- m_txregular_comp = txregular_comp;
- m_spregular_comp = spregular_comp;
-}
-
-void tecmo_mix_device::set_blendsource(int spblend_source, int fgblend_source)
-{
- m_spblend_source = spblend_source;
- m_fgblend_source = fgblend_source;
-}
-
-void tecmo_mix_device::set_revspritetile()
-{
- m_revspritetile = 3;
-}
-
-void tecmo_mix_device::set_bgpen(int bgpen)
-{
- m_bgpen = bgpen;
-}
-
uint32_t tecmo_mix_device::sum_colors(const pen_t *pal, int c1_idx, int c2_idx)
{
const pen_t c1 = pal[c1_idx];