@capture seems to be halving my texture resolution

Scott Fitzgerald's icon

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.

1426.Screen_shot_2010-11-23_at_12.22.05_AM..png
png
Andrew Benson's icon

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.

Rob Ramirez's icon

you should also set gl.texture @adapt 0 i believe.

Scott Fitzgerald's icon

Thanks, setting the texture dims and using adapt 0 resolved the issue.