summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/mbee.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixed all bitmap.palette() users to use m_palette instead (nw) Miodrag Milanovic2014-03-151-3/+3
|
* removed some of machine().first_screen() users (nw) Miodrag Milanovic2014-03-141-3/+2
|
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-6/+6
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* Switched rgb_t to a class, replacing macros with methods. Mappings are Aaron Giles2014-02-191-6/+6
| | | | | | | | | | | | | | | | | | | as follows: MAKE_RGB(r,g,b) == rgb_t(r,g,b) MAKE_ARGB(a,r,g,b) == rgb_t(a,r,g,b) RGB_ALPHA(data) == data.a() RGB_RED(data) == data.r() RGB_GREEN(data) == data.g() RGB_BLUE(data) == data.b() RGB_BLACK == rgb_t::black RGB_WHITE == rgb_t::white Implicit conversions to/from UINT32 are built in as well as simple addition, subtraction, and scaling (with clamping). As a result of being a class, some stricter typing was needed in a few places but overall not too much.
* Converted palette_t and palette_client to classes. General palette.c Aaron Giles2014-02-181-3/+3
| | | | cleanup.
* (MESS) mbee : converted to modern fdc, still doesn't work though. (nw) Robbbert2013-07-051-1/+1
|
* Removal of machine().root_device() where appropriate (nw) Miodrag Milanovic2013-04-141-8/+8
|
* (MESS) mbee.c: tagmap cleanups (nw) Wilbert Pol2013-01-261-4/+15
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-69/+68
|
* Modernized screen update calls (no whatsnew) Miodrag Milanovic2012-09-171-6/+5
|
* Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT ↵ Miodrag Milanovic2012-09-131-29/+26
| | | | changed to be members of state classes (no whatsnew)
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+638