summaryrefslogtreecommitdiffstats
path: root/examples/qml-compositor
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@nokia.com>2011-08-05 12:16:54 +0200
committerSamuel Rødal <samuel.rodal@nokia.com>2011-08-05 12:16:54 +0200
commit9497779525e80962bc01e50425fd45c7b4bf05c7 (patch)
tree1f10ba27e069a51ce6ce510a59d0db04ec7743d5 /examples/qml-compositor
parent122d2550fe44ac6f1ae7099bb2eef2489c63a92b (diff)
parent67df1c8a574763745cd1672414e4fc118a13ad1d (diff)
Merge remote branch 'origin/master' into refactor
Diffstat (limited to 'examples/qml-compositor')
-rw-r--r--examples/qml-compositor/qml-compositor.qrc2
-rw-r--r--examples/qml-compositor/qml/QmlCompositor/ContrastEffect.qml (renamed from examples/qml-compositor/qml/QmlCompositor/ShaderEffect.qml)10
-rw-r--r--examples/qml-compositor/qml/QmlCompositor/WindowContainer.qml2
3 files changed, 7 insertions, 7 deletions
diff --git a/examples/qml-compositor/qml-compositor.qrc b/examples/qml-compositor/qml-compositor.qrc
index 0dc86580c..0a3898fb2 100644
--- a/examples/qml-compositor/qml-compositor.qrc
+++ b/examples/qml-compositor/qml-compositor.qrc
@@ -3,7 +3,7 @@
<file>background.jpg</file>
<file>qml/QmlCompositor/main.qml</file>
<file>qml/QmlCompositor/compositor.js</file>
- <file>qml/QmlCompositor/ShaderEffect.qml</file>
+ <file>qml/QmlCompositor/ContrastEffect.qml</file>
<file>qml/QmlCompositor/WindowChrome.qml</file>
<file>qml/QmlCompositor/WindowContainer.qml</file>
</qresource>
diff --git a/examples/qml-compositor/qml/QmlCompositor/ShaderEffect.qml b/examples/qml-compositor/qml/QmlCompositor/ContrastEffect.qml
index eb2f80005..b832c7131 100644
--- a/examples/qml-compositor/qml/QmlCompositor/ShaderEffect.qml
+++ b/examples/qml-compositor/qml/QmlCompositor/ContrastEffect.qml
@@ -40,7 +40,7 @@
import QtQuick 2.0
-ShaderEffectItem {
+ShaderEffect {
property variant source: null;
property color color: "#ffffff"
property real blend;
@@ -53,23 +53,23 @@ ShaderEffectItem {
}
property string vShader: "
- uniform highp mat4 qt_ModelViewProjectionMatrix;
+ uniform highp mat4 qt_Matrix;
attribute highp vec4 qt_Vertex;
attribute highp vec2 qt_MultiTexCoord0;
varying highp vec2 qt_TexCoord0;
void main() {
qt_TexCoord0 = qt_MultiTexCoord0;
- gl_Position = qt_ModelViewProjectionMatrix * qt_Vertex;
+ gl_Position = qt_Matrix * qt_Vertex;
}
"
property string vShaderInvertedY: "
- uniform highp mat4 qt_ModelViewProjectionMatrix;
+ uniform highp mat4 qt_Matrix;
attribute highp vec4 qt_Vertex;
attribute highp vec2 qt_MultiTexCoord0;
varying highp vec2 qt_TexCoord0;
void main() {
qt_TexCoord0 = vec2(0, 1) + qt_MultiTexCoord0 * vec2(1, -1);
- gl_Position = qt_ModelViewProjectionMatrix * qt_Vertex;
+ gl_Position = qt_Matrix * qt_Vertex;
}
"
diff --git a/examples/qml-compositor/qml/QmlCompositor/WindowContainer.qml b/examples/qml-compositor/qml/QmlCompositor/WindowContainer.qml
index 9182f251d..b5683e90a 100644
--- a/examples/qml-compositor/qml/QmlCompositor/WindowContainer.qml
+++ b/examples/qml-compositor/qml/QmlCompositor/WindowContainer.qml
@@ -72,7 +72,7 @@ Item {
NumberAnimation { easing.type: Easing.Linear; duration: 250; }
}
- ShaderEffect {
+ ContrastEffect {
id: effect
source: child
anchors.fill: child