aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/scenegraph/graph/shaders/noisy.frag
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/scenegraph/graph/shaders/noisy.frag')
-rw-r--r--examples/quick/scenegraph/graph/shaders/noisy.frag5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/quick/scenegraph/graph/shaders/noisy.frag b/examples/quick/scenegraph/graph/shaders/noisy.frag
index 8cea9de02b..0f13b83fd4 100644
--- a/examples/quick/scenegraph/graph/shaders/noisy.frag
+++ b/examples/quick/scenegraph/graph/shaders/noisy.frag
@@ -1,3 +1,6 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
#version 440
layout(location = 0) in vec2 vTexCoord;
@@ -8,7 +11,7 @@ layout(location = 0) out vec4 fragColor;
layout(std140, binding = 0) uniform buf {
mat4 qt_Matrix;
vec4 color;
- vec2 textureSize;
+ vec2 texCoordScale;
float qt_Opacity;
};