1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/*
* (C) Gražvydas "notaz" Ignotas, 2011
*
* This work is licensed under the terms of any of these licenses
* (at your option):
* - GNU GPL, version 2 or later.
* - GNU LGPL, version 2.1 or later.
* See the COPYING file in the top-level directory.
*/
#include <stdio.h>
extern const unsigned char cmd_lengths[256];
#define command_lengths cmd_lengths
#include "psx_gpu/psx_gpu.c"
#include "psx_gpu/psx_gpu_parse.c"
#include "gpu.h"
static psx_gpu_struct egpu __attribute__((aligned(256)));
void do_cmd_list(uint32_t *list, int count)
{
gpu_parse(&egpu, list, count * 4);
}
int renderer_init(void)
{
initialize_psx_gpu(&egpu, gpu.vram);
return 0;
}
void renderer_sync_ecmds(uint32_t *ecmds)
{
gpu_parse(&egpu, ecmds + 1, 6 * 4);
}
void renderer_invalidate_caches(int x, int y, int w, int h)
{
invalidate_texture_cache_region(&egpu, x, y, x + w - 1, y + h - 1);
}
void renderer_flush_queues(void)
{
flush_render_block_buffer(&egpu);
}
void renderer_set_interlace(int enable, int is_odd)
{
egpu.interlace_mode &= ~(RENDER_INTERLACE_ENABLED|RENDER_INTERLACE_ODD);
if (enable)
egpu.interlace_mode |= RENDER_INTERLACE_ENABLED;
if (is_odd)
egpu.interlace_mode |= RENDER_INTERLACE_ODD;
}
void renderer_set_config(const struct rearmed_cbs *cbs)
{
}
|