X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=plugins%2Fgpu_unai%2Fgpulib_if.cpp;h=0064aaa3742ba5679da9adde5e2e07864f86fea1;hb=0a50313e5c9a6470e37e1dab99022eb481b6b5f7;hp=646b0f22b057a205c8cfa40581b56b32a3aec9a8;hpb=4144e9abc1fb8420e08e0a5ef48a9ceba7f26661;p=pcsx_rearmed.git diff --git a/plugins/gpu_unai/gpulib_if.cpp b/plugins/gpu_unai/gpulib_if.cpp index 646b0f22..0064aaa3 100644 --- a/plugins/gpu_unai/gpulib_if.cpp +++ b/plugins/gpu_unai/gpulib_if.cpp @@ -23,6 +23,7 @@ #include #include #include "../gpulib/gpu.h" +#include "arm_features.h" #define u8 uint8_t #define s8 int8_t @@ -162,6 +163,10 @@ void renderer_notify_res_change(void) { } +void renderer_notify_scanout_x_change(int x, int w) +{ +} + extern const unsigned char cmd_lengths[256]; int do_cmd_list(unsigned int *list, int list_len, int *last_cmd) @@ -171,8 +176,8 @@ int do_cmd_list(unsigned int *list, int list_len, int *last_cmd) unsigned int *list_end = list + list_len; linesInterlace = force_interlace; -#ifndef __ARM_ARCH_7A__ /* XXX */ - linesInterlace |= gpu.status.interlace; +#ifdef HAVE_PRE_ARMV7 /* XXX */ + linesInterlace |= !!(gpu.status & PSX_GPU_STATUS_INTERLACE); #endif for (; list < list_end; list += 1 + len) @@ -519,7 +524,7 @@ void renderer_sync_ecmds(uint32_t *ecmds) do_cmd_list(&ecmds[1], 6, &dummy); } -void renderer_update_caches(int x, int y, int w, int h) +void renderer_update_caches(int x, int y, int w, int h, int state_changed) { }