Split vid_voodoo.c into multiple source & header files.
This commit is contained in:
parent
3cbcf5f575
commit
41238b3c85
22 changed files with 6938 additions and 6761 deletions
|
|
@ -3288,7 +3288,7 @@ static inline void voodoo_generate(uint8_t *code_block, voodoo_t *voodoo, voodoo
|
|||
|
||||
addbyte(0xC3); /*RET*/
|
||||
}
|
||||
static int voodoo_recomp = 0;
|
||||
int voodoo_recomp = 0;
|
||||
static inline void *voodoo_get_block(voodoo_t *voodoo, voodoo_params_t *params, voodoo_state_t *state, int odd_even)
|
||||
{
|
||||
int c;
|
||||
|
|
@ -3339,7 +3339,7 @@ voodoo_recomp++;
|
|||
return data->code_block;
|
||||
}
|
||||
|
||||
static void voodoo_codegen_init(voodoo_t *voodoo)
|
||||
void voodoo_codegen_init(voodoo_t *voodoo)
|
||||
{
|
||||
int c;
|
||||
|
||||
|
|
@ -3371,7 +3371,7 @@ static void voodoo_codegen_init(voodoo_t *voodoo)
|
|||
xmm_00_ff_w[1] = _mm_set_epi32(0, 0, 0xff | (0xff << 16), 0xff | (0xff << 16));
|
||||
}
|
||||
|
||||
static void voodoo_codegen_close(voodoo_t *voodoo)
|
||||
void voodoo_codegen_close(voodoo_t *voodoo)
|
||||
{
|
||||
#if WIN64
|
||||
VirtualFree(voodoo->codegen_data, 0, MEM_RELEASE);
|
||||
|
|
|
|||
Loading…
Reference in a new issue