recording with jit.gl.asyncread
I'm using the jit.gl.asyncread object to record the asteroid growths patch from Andrew Benson’s Jitter Recipes no.3, but am only managing to capture the top left hand corner. I've tried all kinds of variations with layers and screen size, but with no luck. Anyone got any suggestions?
Thanks,
S.
I'm having the same problem, I am transferring live video synthesis to the jit.gl.asynchread. On a larger computer it is working but on my laptop it will only capture the top left corner. Have you found any solutions?
No solution to the top left corner problem yet, but I'm not giving up on it. jit.gl.asynchread will capture other recipe patches but not asteroid growth.
It's interesting you say it works on a larger computer but not a laptop.
I'm having a similar problem with one of my patches - except I seem to be getting only the lower left corner, not the top left (unless it happens to be flipped upside down...)
Maybe it has something to do with using jit.gl.slab? I'm using Andrew Benson's rendermaster system as my final output chain.
@steranko try to put "fsaa 0" in the jit.window object
Touk: That seems to work! Any idea why? Sort of annoying that you can't anti alias if you want to record anything.
The way FSAA works is that it renders a double-sized image and then average-downsamples it. To mimic it, you can render the scene to a bigger texture and then use jit.gl.slab to downsample with a filter. Below is an example.
@Touk and Andrew, yes that does work... thank you! Will come back with a patch to share.