aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_neon/psx_gpu/psx_gpu_main.c
diff options
context:
space:
mode:
authornotaz2012-02-24 01:07:33 +0200
committernotaz2012-02-27 00:27:46 +0200
commitb243416b907e6ce366b051e77ed8a434f7668d5d (patch)
tree0d1bce54ae1c19934c83f9546257de94723bd76e /plugins/gpu_neon/psx_gpu/psx_gpu_main.c
parentf7be0e2b7adc4f6c4057f44f789bd7405844701c (diff)
downloadpcsx_rearmed-b243416b907e6ce366b051e77ed8a434f7668d5d.tar.gz
pcsx_rearmed-b243416b907e6ce366b051e77ed8a434f7668d5d.tar.bz2
pcsx_rearmed-b243416b907e6ce366b051e77ed8a434f7668d5d.zip
gpulib: eliminate list scan-ahead
Diffstat (limited to 'plugins/gpu_neon/psx_gpu/psx_gpu_main.c')
-rw-r--r--plugins/gpu_neon/psx_gpu/psx_gpu_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gpu_neon/psx_gpu/psx_gpu_main.c b/plugins/gpu_neon/psx_gpu/psx_gpu_main.c
index 6c17b0a..8ca3ad0 100644
--- a/plugins/gpu_neon/psx_gpu/psx_gpu_main.c
+++ b/plugins/gpu_neon/psx_gpu/psx_gpu_main.c
@@ -192,7 +192,7 @@ int main(int argc, char *argv[])
init_counter();
#endif
- gpu_parse(psx_gpu, list, size);
+ gpu_parse(psx_gpu, list, size, NULL);
flush_render_block_buffer(psx_gpu);
clear_stats();
@@ -201,7 +201,7 @@ int main(int argc, char *argv[])
u32 cycles = get_counter();
#endif
- gpu_parse(psx_gpu, list, size);
+ gpu_parse(psx_gpu, list, size, NULL);
flush_render_block_buffer(psx_gpu);
#ifdef NEON_BUILD