summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/divideo.c
Commit message (Collapse)AuthorAgeFilesLines
* debug/qt: Add a per-device window [O. Galibert] Olivier Galibert2014-12-221-1/+1
| | | | | There probably is interesting information to add, and it can look better. Anybody, feel free to enhance it :-)
* Moved eminline and related files into /src/osd since it's system related (nw) Miodrag Milanovic2014-04-161-3/+3
| | | | | | | | Moved delegates into /src/lib/util to enable usage of delegates in other project parts Moved mame_printf_* calls into /src/osd/osdcore.c and renamed them to osd_printf_* Changed mess.mak to display compilation of ymmu100.ppm nicely
* added missing \n in error messages Oliver Stöneberg2014-03-101-3/+3
|
* Bulk convert files that already had standard BSD license in my name Aaron Giles2013-10-161-31/+2
| | | | to new license tagged form.
* Cleanups and version bumpmame0150 Miodrag Milanovic2013-09-171-2/+2
|
* Now setting NULL explicitly for the screen tag will prevent the video Aaron Giles2013-07-261-31/+46
| | | | interface from auto-finding the target screen.
* Created new device_video_interface. Right now its sole purpose is to Aaron Giles2013-07-241-0/+144
house a screen tag and to find the screen at startup, providing an m_screen object that can be used. One nice feature is that if there is only one screen and no screen has been specified, it will auto configure to that screen. This removes the need to explicitly specify a screen in the configuration for a large chunk of drivers (though doing so never hurts). A new macro MCFG_VIDEO_SET_SCREEN is provided, though devices are encouraged to define their own that maps there so it is obvious which device is being targeted. The device_video_interface's validation function will error if an invalid screen is specified or if no screen is provided but there are multiple screens present. Updated all devices that currently had an m_screen in them to use the device_video_interface instead. This also has the nice benefit of flagging video-related devices for categorization purposes. It also means all these devices inherit the same screen-finding behaviors. For devices that had interfaces that specified a screen tag, those have been removed and all existing structs updated. Added an optional_device<screen_device> m_screen to the base driver_device. If you name your screen "screen" (as most drivers do), you will have free access to your screen this way. Future updates include: * Updating all devices referencing machine.primary_screen to use the device_video_interface instead * Updating all drivers referencing machine.primary_screen to use the m_screen instead * Removing machine.primary_screen entirely