summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/model2rd.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/model2rd.hxx')
-rw-r--r--src/mame/video/model2rd.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/mame/video/model2rd.hxx b/src/mame/video/model2rd.hxx
index e8c13af9eb6..d7a7104a6cb 100644
--- a/src/mame/video/model2rd.hxx
+++ b/src/mame/video/model2rd.hxx
@@ -62,16 +62,16 @@ void MODEL2_FUNC_NAME(int32_t scanline, const extent_t& extent, const m2_poly_ex
model2_state *state = object.state;
bitmap_rgb32 *destmap = (bitmap_rgb32 *)&m_destmap;
uint32_t *p = &destmap->pix32(scanline);
-// uint8_t *gamma_value = &state->m_gamma_table[0];
+// uint8_t *gamma_value = &state->m_gamma_table[0];
/* extract color information */
-// const uint16_t *colortable_r = &state->m_colorxlat[0x0000/2];
-// const uint16_t *colortable_g = &state->m_colorxlat[0x4000/2];
-// const uint16_t *colortable_b = &state->m_colorxlat[0x8000/2];
-// const uint16_t *lumaram = &state->m_lumaram[0];
-// uint32_t lumabase = object.lumabase;
+// const uint16_t *colortable_r = &state->m_colorxlat[0x0000/2];
+// const uint16_t *colortable_g = &state->m_colorxlat[0x4000/2];
+// const uint16_t *colortable_b = &state->m_colorxlat[0x8000/2];
+// const uint16_t *lumaram = &state->m_lumaram[0];
+// uint32_t lumabase = object.lumabase;
uint32_t color = object.colorbase;
-// uint8_t luma;
+// uint8_t luma;
uint32_t tr, tg, tb;
int x;
#endif
@@ -80,16 +80,16 @@ void MODEL2_FUNC_NAME(int32_t scanline, const extent_t& extent, const m2_poly_ex
return;
#else
-// luma = lumaram[(lumabase + (0xf << 3))];
+// luma = lumaram[(lumabase + (0xf << 3))];
// fix luma overflow
-// luma = std::min((int)luma,0x3f);
+// luma = std::min((int)luma,0x3f);
color = state->m_palram[(color + 0x1000)] & 0xffff;
-// colortable_r += ((color >> 0) & 0x1f) << 8;
-// colortable_g += ((color >> 5) & 0x1f) << 8;
-// colortable_b += ((color >> 10) & 0x1f) << 8;
+// colortable_r += ((color >> 0) & 0x1f) << 8;
+// colortable_g += ((color >> 5) & 0x1f) << 8;
+// colortable_b += ((color >> 10) & 0x1f) << 8;
/* we have the 6 bits of luma information along with 5 bits per color component */
/* now build and index into the master color lookup table and extract the raw RGB values */
@@ -98,10 +98,10 @@ void MODEL2_FUNC_NAME(int32_t scanline, const extent_t& extent, const m2_poly_ex
tr = pal5bit((color >> 0) & 0x1f); //colortable_r[(luma)] & 0xff;
tg = pal5bit((color >> 5) & 0x1f); //colortable_g[(luma)] & 0xff;
tb = pal5bit((color >> 10) & 0x1f); //colortable_b[(luma)] & 0xff;
-// tr = gamma_value[tr];
-// tg = gamma_value[tg];
-// tb = gamma_value[tb];
-
+// tr = gamma_value[tr];
+// tg = gamma_value[tg];
+// tb = gamma_value[tb];
+
/* build the final color */
color = rgb_t(tr, tg, tb);