summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/pp01.c
Commit message (Collapse)AuthorAgeFilesLines
* Synced other dirs withs driver license for MESS (nw) Miodrag Milanovic2015-05-131-2/+2
|
* Added dummy license lines to each file for MESS (nw) Miodrag Milanovic2015-05-071-0/+2
|
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-2/+2
| | | 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-8/+8
| | | | | | | | | | | | | | | | | | | 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.
* (MESS) PP01 : added sound Robbbert2013-09-291-2/+0
|
* made BEEP and RAM devices initialize in constructor of driver classes (nw) Miodrag Milanovic2013-04-231-1/+1
|
* changed most of screen.machine() to machine() (no whatsnew) Miodrag Milanovic2012-09-181-1/+1
|
* Modernized screen update calls (no whatsnew) Miodrag Milanovic2012-09-171-5/+4
|
* Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT ↵ Miodrag Milanovic2012-09-131-3/+3
| | | | changed to be members of state classes (no whatsnew)
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+57