summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sprite.h
Commit message (Collapse)AuthorAgeFilesLines
* sprite.h: In sprite_device, when no shrared memory region can be found don't ↵ Wilbert Pol2013-11-131-2/+4
| | | | | | | | save state the m_buffer member; assume the owner will take care of save stating the spriteram itself. This fixes MT05292. (nw)
* Bulk convert files that already had standard BSD license in my name Aaron Giles2013-10-161-31/+2
| | | | to new license tagged form.
* Convert atarimo to a device. Still a bunch more cleanup/improvements to Aaron Giles2013-07-231-11/+7
| | | | | | do; this is pretty much a direct port of the existing functionality, built on top of the sprite_device.
* extended large amount of devices with shortname and source file data (nw) Miodrag Milanovic2013-06-211-1/+1
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-20/+20
|
* Clean-ups and version bumpmame0147 Miodrag Milanovic2012-09-171-16/+16
| | | note: hoarded dump removed too from coco_cart.xml, this will not be tolerated
* Created new sprite device base class, which manages a bitmap Aaron Giles2012-09-021-0/+244
and a sparse bitmap for tracking which areas got updated. This allows sprites to be rendered independently to their own bitmap and then mixed in a final step. Converted the Sega sprite device over to this new model, and moved the mixing steps out of the sprite implementations and into the driver- specific video updates where it belongs. [Aaron Giles] Added some further methods and helpers to the bitmap_t and rectangle classes. [Aaron Giles] Created a sega_16bit_common_base class which handles the common Sega palette RAM mappings and open bus reads. [Aaron Giles]