Fragment Shaders
Setting up the scene
import QtQuick
Rectangle {
width: 480; height: 240
color: '#1e1e1e'
Grid {
anchors.centerIn: parent
spacing: 20
rows: 2; columns: 4
Image {
id: sourceImage
width: 80; height: width
source: '../../assets/tulips.jpg'
}
}
}
A red shader

A red shader with texture

The red channel property

The red channel animated

Baking
Last updated