X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=plugins%2Fgpu_neon%2Fgpu.h;h=04f69ab855209adf7061bb1c15a4be2c5adfe2fd;hp=033581e87f5c6f97504bc6c939ae39f35436c0aa;hb=a80ae4a0353fce94df700ec84222d3c56c3d813a;hpb=9394ada5d3140e3426592a25722f4fe7083cce9d diff --git a/plugins/gpu_neon/gpu.h b/plugins/gpu_neon/gpu.h index 033581e8..04f69ab8 100644 --- a/plugins/gpu_neon/gpu.h +++ b/plugins/gpu_neon/gpu.h @@ -71,9 +71,10 @@ struct psx_gpu { } last_list; } state; struct { - uint32_t enabled:1; + int32_t set:3; /* -1 auto, 0 off, 1 fixed */ uint32_t active:1; uint32_t frame_ready:1; + uint32_t skipped_blits:5; const int *advice; } frameskip; }; @@ -85,6 +86,7 @@ extern const unsigned char cmd_lengths[256]; void do_cmd_list(uint32_t *list, int count); int renderer_init(void); +void renderer_sync_ecmds(uint32_t * ecmds); void renderer_invalidate_caches(int x, int y, int w, int h); void renderer_flush_queues(void);