@capture seems to be halving my texture resolution
I'm using @capture to send a texture to a different context.
When I do this, it seems to diminish the quality of the texture (by like, about 1/2). Why is this?
Example patch below.
Also attaches is a screenshot, in which the top two are Jitter windows, the bottom is the texture as a quicktime, as I expect it to appear. The Jitter contexts are blurry, missing details.
Max Patch
Copy patch and select New From Clipboard in Max.
What you are seeing there is the default dims of the texture. You will need to specify the dims for the texture you are capturing to. For best results, you'll probably want to match that to the size of your QT movie or something like that.
you should also set gl.texture @adapt 0 i believe.
Thanks, setting the texture dims and using adapt 0 resolved the issue.