X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=plugins%2Fgpu_neon%2Fpsx_gpu%2Fpsx_gpu_main.c;h=1eadc794dee67b619dd64712bdf84bd836452cb2;hp=d610e8e72bb408374d9d4efd5384f75792d469d5;hb=de35a4641acce078961c2e748e1b6da6fe8d8b70;hpb=e8c0e0bb6288aeeb2a4cb6709608340836778886 diff --git a/plugins/gpu_neon/psx_gpu/psx_gpu_main.c b/plugins/gpu_neon/psx_gpu/psx_gpu_main.c index d610e8e7..1eadc794 100644 --- a/plugins/gpu_neon/psx_gpu/psx_gpu_main.c +++ b/plugins/gpu_neon/psx_gpu/psx_gpu_main.c @@ -125,7 +125,7 @@ void update_screen(psx_gpu_struct *psx_gpu, SDL_Surface *screen) SDL_Flip(screen); } -#ifdef PANDORA_BUILD +#ifdef NEON_BUILD #include #include @@ -178,7 +178,7 @@ int main(int argc, char *argv[]) initialize_psx_gpu(psx_gpu, _vram); -#ifdef PANDORA_BUILD +#ifdef NEON_BUILD system("ofbset -fb /dev/fb1 -mem 6291456 -en 0"); u32 fbdev_handle = open("/dev/fb1", O_RDWR); psx_gpu->vram_ptr = (mmap((void *)0x50000000, 1024 * 1024 * 2, PROT_READ | PROT_WRITE, @@ -188,7 +188,7 @@ int main(int argc, char *argv[]) -#ifdef PANDORA_BUILD +#ifdef NEON_BUILD //triangle_benchmark(psx_gpu); //return 0; #endif @@ -216,7 +216,7 @@ int main(int argc, char *argv[]) clear_stats(); -#ifdef PANDORA_BUILD +#ifdef NEON_BUILD init_counter(); #endif @@ -225,7 +225,7 @@ int main(int argc, char *argv[]) clear_stats(); -#ifdef PANDORA_BUILD +#ifdef NEON_BUILD u32 cycles = get_counter(); #endif @@ -233,7 +233,7 @@ int main(int argc, char *argv[]) flush_render_block_buffer(psx_gpu); printf("%s: ", argv[1]); -#ifdef PANDORA_BUILD +#ifdef NEON_BUILD u32 cycles_elapsed = get_counter() - cycles; printf("%d\n", cycles_elapsed);