X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=plugins%2Fgpu_neon%2Fgpu.h;h=c3e13bb234e5b6c8f05c0c81d3b2a5f5bab29658;hb=6f2ee2becb1eb33cac685594f13468cef4d09684;hp=a0cdbf74e49b4d6143206a1d72a265a24c9682b7;hpb=5b745e5bbcb51267122821ed9dc1c8c2c77dc100;p=pcsx_rearmed.git diff --git a/plugins/gpu_neon/gpu.h b/plugins/gpu_neon/gpu.h index a0cdbf74..c3e13bb2 100644 --- a/plugins/gpu_neon/gpu.h +++ b/plugins/gpu_neon/gpu.h @@ -10,6 +10,10 @@ #include +#ifdef __cplusplus +extern "C" { +#endif + #define CMD_BUFFER_LEN 1024 struct psx_gpu { @@ -71,7 +75,7 @@ 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; @@ -92,3 +96,7 @@ void renderer_flush_queues(void); int vout_init(void); int vout_finish(void); + +#ifdef __cplusplus +} +#endif