From aeb6fc5986757b0186634f7106d32861dbf55c54 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Thu, 14 Nov 2019 21:35:25 -0800 Subject: rtv: implement "Rototiller TV" renderer This is sort of a meta renderer, as it simply renders other modules in its prepare_frame() stage. They're still threaded as the newly public rototiller_module_render() utilizes the threading machinery, it just needs to be called from the serial phase @ prepare_frame(). I'm pretty sure this module will leak memory every time it changes modules, since the existing cleanup paths for the modules hasn't needed to be thorough in the least. So that's something to fix in a later commit, go through all the modules and make sure their destroy_context() entrypoints actually cleans everything up. See the source for some rtv-specific TODOs. --- configure.ac | 1 + 1 file changed, 1 insertion(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 20be6cf..d9232b8 100644 --- a/configure.ac +++ b/configure.ac @@ -44,6 +44,7 @@ AC_CONFIG_FILES([ src/modules/plasma/Makefile src/modules/ray/Makefile src/modules/roto/Makefile + src/modules/rtv/Makefile src/modules/sparkler/Makefile src/modules/stars/Makefile src/modules/submit/Makefile -- cgit v1.2.1