aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_neon/psx_gpu_if.c
diff options
context:
space:
mode:
authornotaz2012-08-13 00:03:43 +0300
committernotaz2012-10-12 00:05:07 +0300
commitc1817bd9249ee616cf9545a57136d6dd3669ce34 (patch)
tree7882f28a30fe5da5c256ed855732da781e743de0 /plugins/gpu_neon/psx_gpu_if.c
parentd81b8e972678928ffece2d38213de8048f5e872d (diff)
downloadpcsx_rearmed-c1817bd9249ee616cf9545a57136d6dd3669ce34.tar.gz
pcsx_rearmed-c1817bd9249ee616cf9545a57136d6dd3669ce34.tar.bz2
pcsx_rearmed-c1817bd9249ee616cf9545a57136d6dd3669ce34.zip
psx_gpu: add enhanced triangle rendering
Diffstat (limited to 'plugins/gpu_neon/psx_gpu_if.c')
-rw-r--r--plugins/gpu_neon/psx_gpu_if.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/plugins/gpu_neon/psx_gpu_if.c b/plugins/gpu_neon/psx_gpu_if.c
index ff31c27..8610c83 100644
--- a/plugins/gpu_neon/psx_gpu_if.c
+++ b/plugins/gpu_neon/psx_gpu_if.c
@@ -27,7 +27,12 @@ static psx_gpu_struct egpu __attribute__((aligned(256)));
int do_cmd_list(uint32_t *list, int count, int *last_cmd)
{
- int ret = gpu_parse(&egpu, list, count * 4, (u32 *)last_cmd);
+ int ret;
+
+ if (gpu.state.enhancement_active)
+ ret = gpu_parse_enhanced(&egpu, list, count * 4, (u32 *)last_cmd);
+ else
+ ret = gpu_parse(&egpu, list, count * 4, (u32 *)last_cmd);
ex_regs[1] &= ~0x1ff;
ex_regs[1] |= egpu.texture_settings & 0x1ff;
@@ -38,6 +43,7 @@ int renderer_init(void)
{
initialize_psx_gpu(&egpu, gpu.vram);
ex_regs = gpu.ex_regs;
+ gpu.state.enhancement_available = 1;
return 0;
}
@@ -65,6 +71,10 @@ void renderer_set_interlace(int enable, int is_odd)
egpu.interlace_mode |= RENDER_INTERLACE_ODD;
}
+#include "../../frontend/plugin_lib.h"
+
void renderer_set_config(const struct rearmed_cbs *cbs)
{
+ egpu.enhancement_buf_ptr = gpu.enhancement_bufer;
+ disable_main_render = cbs->gpu_neon.enhancement_no_main;
}