Files
86Box/src/include/86box/vid_voodoo_blitter.h

26 lines
752 B
C
Raw Normal View History

/*
2023-08-14 21:23:54 -04:00
* 86Box A hypervisor and IBM PC system emulator that specializes in
* running old operating systems and software designed for IBM
* PC systems and compatibles from 1981 through fairly recent
* system designs based on the PCI bus.
*
2023-08-14 21:23:54 -04:00
* This file is part of the 86Box distribution.
*
2023-08-14 21:23:54 -04:00
* 3DFX Voodoo emulation.
*
*
*
2023-08-14 21:23:54 -04:00
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
*
2023-08-14 21:23:54 -04:00
* Copyright 2008-2020 Sarah Walker.
*/
2022-02-18 19:42:21 -05:00
#ifndef VIDEO_VOODOO_BLITTER_H
#define VIDEO_VOODOO_BLITTER_H
2022-02-18 19:42:21 -05:00
void voodoo_v2_blit_start(voodoo_t *voodoo);
void voodoo_v2_blit_data(voodoo_t *voodoo, uint32_t data);
void voodoo_fastfill(voodoo_t *voodoo, voodoo_params_t *params);
2022-02-18 19:42:21 -05:00
#endif /*VIDEO_VOODOO_BLITTER_H*/