Hey I’ve got an RGBA video and I’d like for it to blend with other QtQuick elements like a Rectangle
Rectangle {
width: 1024
height: 768
color: "yellow"
focus: true
Video {
id: video
anchors.fill: parent
source: "alpha-video.mov"
autoPlay: true
}
}
Is it possible to achieve such a thing?
↧