Direct3D video output. Fixed redraw when DirectDraw/Direct3D device is lost.

This commit is contained in:
TomW 2013-08-13 19:20:28 +01:00
commit 72f934d141
43 changed files with 528 additions and 192 deletions

View file

@ -141,11 +141,19 @@ void oti067_speed_changed(void *p)
svga_recalctimings(&oti067->svga);
}
void oti067_force_redraw(void *p)
{
oti067_t *oti067 = (oti067_t *)p;
oti067->svga.fullchange = changeframecount;
}
device_t oti067_device =
{
"Oak OTI-067",
oti067_init,
oti067_close,
oti067_speed_changed,
oti067_force_redraw,
svga_add_status_info
};