Array of jit.gl.videoplane holding PNGs is very CPU intensive

Andrew's icon

I'm working on project that will string together on-the-fly user-drawn transparent PNGs in a turning spiral. There'll be lots of drawings (like 100 or more) at any given time, ie 100 videoplanes. Even a very small number of videoplanes max's out the Max thread making Max sluggish.

I'm only banging the movies once to load them into the videoplane. The images are small,

Based on the ability to place 150+ videoplanes showing my webcam (jit.gl.grab) in another patcher (can't find the post, now, but it is a 'time machine' of randomly placed videoplanes) I thought this would work no problem, but I'm really struggling.

I tried Slabs outside of javascript with just 4 videoplanes and it didn't make an appreciable difference. Since I'm not play a movie, I'm not sure it would anyway.

Here's the javascript I'm using to load the array. Is there anything I can do to make this perform better?

function initSpiral() {
    for (i=0; i(png_file.length-1)) { j=0; }

        pngqt.matrixcalc(png_matrix[i],png_matrix[i]);
        vplane[i].jit_matrix(png_matrix[i].name);
    }
}

I'll also attach the patcher, javascript and PNGs to see it in context. It's stripped down - it doesn't have the drawing part, rather this one just loads 7 drawings over and over to fill the array for now.

The number of drawings to use is set in the javascript. I lowered it to 10 for the moment, but it needs to be at more like 100+

DRAWING_COUNT=10;

I had tried texturing jit.gl.gridshapes a while back, but was having trouble with the transparency I think. It seemed like videoplanes were the way to go, but maybe not?

Thanks for any help!
Andrew

5050.SpiralVideoplanes.zip
zip
Rob Ramirez's icon

hi andrew.
your slowdowns are all the result of setting the dim attribute of your jit.gl.videoplane, both in the javascript, and the big videoplane in your main patcher.
the dim attribute for gl objects is not related to the resolution of the matrix or texture input, but instead refers to the geometry.

simply leave the dim attributes on the gl.videoplanes to their default values, and your patch performs fine over here.

Andrew's icon

Wow! Thanks so much. I never bothered looking at the dim attribute because it's the one thing I thought I DID understand.

Thanks again!