I’m working actually on a print and i’d like to include some generative stuff from vvvv.
It needs to be hi-res smth like 10000*55000px so that i decided to use the Ex9.texture grid.
The problem is that my patch generate some kind of waveform with some kind of motion blur (renderer clear set to 0 and group with a low alpha clearing quad layer).
So that, each time i launch the writer’s save process it save backbuffer artefacts or renderer background color.
Is there any settings in the modules’ renderer or workaround to save hi-res pics without clearing the renderer ???
As the backbuffer isn’t clear, you need one renderer per tile (so that if you need 44 tiles each of 10241024 px for example, you need 16 renderer each with backbuffer size to 1024 px).
Then just output each renderer backbuffer layer to the writer (ex9.texture) node.
Then you need to clear all backbuffer, disable all backbuffer (so that you freeze the wanted picture) and then you can save each renderer backbuffer.
I think a module for that would be nice but seems tricky (use setpatch to dynamically create and connect each renderer according to the number of rows and cols.
I’ll work on it and if i made something usefull, stay tuned.