Enhanced Buffer Support

This commit is contained in:
Digital Artifex
2025-08-18 05:11:30 -04:00
parent 95018f434b
commit 9ea2302b95
2 changed files with 195 additions and 273 deletions

View File

@@ -0,0 +1,24 @@
import QtQuick
Item
{
property alias sourceItem: source.sourceItem
property alias format: source.format
property alias hideSource: source.hideSource
property alias live: source.live
property alias mipmap: source.mipmap
property alias recursive: source.recursive
property alias samples: source.samples
property alias sourceRect: source.sourceRect
property alias textureMirroring: source.textureMirroring
property alias textureSize: source.textureSize
property alias wrapMode: source.wrapMode
anchors.fill: parent
ShaderEffectSource
{
anchors.fill: parent
id: source
}
}