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