Using 2D GL Objects as alpha masks over video and other layers
Hello!
I've put together a simplified/clarified patch to demonstrate the problem I'm trying to solve. I have a piece that uses crossfading still images as the primary background, then 2D GL objects in the foreground that act as alpha masks over QT video. I'm still fairly new to Jitter (old to Max/MSP), and so the original version of this piece just mixed video and GL without any concept of optimizing to run on the GPU (and thus, my frame rates were terrible and the patch fell back to software GL).
I've been in the process of rewriting everything to work via jit.gl.videoplane and slab objects, but have hit a block, illustrated in the example patch. I've tried playing with the blend settings of the video (Layer 1) and the 2D objects (Layer 2), but without much luck. My understanding of GL is still fairly limited, and so I'm hoping someone can help nudge me out of this rut. Many thanks!
Peter
here's one way, using the jit.gl.pix mix operator.
capture the shapes to texture using gl.node @capture 1, and use the alpha value of the captured texture to mix the two movies.
Yes, that's exactly what I was looking for. I haven't learned about jit.gl.node yet, and while I had played with jit.gl.pix, I wasn't sure how to use it in that context. I switched the second two inputs to jit.gl.pix around in your example, so it now shows the still images in the background, and the 2D objects revealing the qt movie underneath. Many thanks Rob!
Peter
One quick question: In my full-scale patch, I have three jit.gl.multiple objects inside three copies of an abstraction. I have to connect the jit.gl.node object through inlets on each of those abstractions where they then connect to the jit.gl.gridshape and jit.gl.muptiple objects. However, I get "attached object is not ob3d" as an error from jit.gl.node. Does this mean it is actually failing, or is it just complaining about the initial connection to the abstraction, but still gets through to the jit.gl objects inside to create the sub-context? Thanks!
Peter
the gl.node connect-to-objects outlet doesn't work through abstractions or sub-patchers.
however you simply provide the gl objects the name of the gl.node, for patch-cordless adding to the sub-context.
eg:
jit.gl.node ctx @name sub-ctx
jit.gl.multiple sub-ctx
jit.gl.gridshape sub-ctx
Thanks Rob! I actually figured that part out a little while after posting my question and got it all working (your earlier answer solved my problem, so thank you again!), but I figured it was still a legitimate question, i.e., doesn't the connect-to-objects outlet not working through abstractions or sub-patchers break a fundamental piece of the max model? I guess that's really a question for the Jitter dev team, but from a programming perspective, I'm interested to know if there's a reason for that seemingly inconsistent behavior re patching through.
Hi -
I'm struggling with this issue of jit.gl.nodes and sub-patcher hierarchy a bit, also..
I've attached an example patch.
I have a render context in the front, a node in a sub-patcher...but what I'd like to be able to do is include multiple sub-patchers onto the same node..
I'm sure this is somewhere in the forum already, but I haven't been able to find it..
Nevermind, got it!