src/video

This commit is contained in:
Jasmine Iwanek
2022-04-09 20:09:14 -04:00
parent 3431e01d4a
commit d28cec126a
26 changed files with 1209 additions and 543 deletions

View File

@@ -1418,22 +1418,22 @@ static const device_config_t voodoo_config[] = {
},
#endif
{
.type = -1
.type = CONFIG_END
}
// clang-format on
};
const device_t voodoo_device =
{
"3DFX Voodoo Graphics",
"voodoo",
DEVICE_PCI,
0,
voodoo_init,
voodoo_close,
NULL,
{ NULL },
voodoo_speed_changed,
voodoo_force_blit,
voodoo_config
.name = "3DFX Voodoo Graphics",
.internal_name = "voodoo",
.flags = DEVICE_PCI,
.local = 0,
.init = voodoo_init,
.close = voodoo_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = voodoo_speed_changed,
.force_redraw = voodoo_force_blit,
.config = voodoo_config
};