diff options
author | Justin Weiss | 2020-09-13 20:06:57 -0700 |
---|---|---|
committer | Justin Weiss | 2020-10-22 18:07:00 -0700 |
commit | c765eb86debdc06fe304511bc2edbb6f3e3d7813 (patch) | |
tree | 8e489b86af71d3b081c125d5eb234b0fd6b68f17 /plugins/dfxvideo | |
parent | e592293a48af1d63b6973135fcd2677e5e04e17e (diff) | |
download | pcsx_rearmed-c765eb86debdc06fe304511bc2edbb6f3e3d7813.tar.gz pcsx_rearmed-c765eb86debdc06fe304511bc2edbb6f3e3d7813.tar.bz2 pcsx_rearmed-c765eb86debdc06fe304511bc2edbb6f3e3d7813.zip |
Add a threaded renderer
This change adds a gpulib implementation that accepts GPU commands and
runs them through a real gpulib implementation on a thread. Depending
on a setting, it can either force a sync every frame, or continue to
work until the next frame arrives.
Diffstat (limited to 'plugins/dfxvideo')
-rw-r--r-- | plugins/dfxvideo/gpulib_if.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/dfxvideo/gpulib_if.c b/plugins/dfxvideo/gpulib_if.c index bb3ad56..db0797c 100644 --- a/plugins/dfxvideo/gpulib_if.c +++ b/plugins/dfxvideo/gpulib_if.c @@ -426,6 +426,14 @@ void renderer_set_interlace(int enable, int is_odd) { } +void renderer_sync(void) +{ +} + +void renderer_notify_update_lace(int updated) +{ +} + #include "../../frontend/plugin_lib.h" void renderer_set_config(const struct rearmed_cbs *cbs) |