aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/shadereffects/content/shaders/rhi/wobble.frag
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2020-09-13 18:19:06 +0200
committerLaszlo Agocs <laszlo.agocs@qt.io>2020-09-13 19:15:12 +0200
commita99fc26faa21eca7921016ef7b399a2877a0652c (patch)
treed3ce0a94b31a1f86456cf8e946d4704c9db62d41 /examples/quick/shadereffects/content/shaders/rhi/wobble.frag
parent33d8c8005f95e27760b9901bfd9f757a1cb1d664 (diff)
shadereffect example: remove unused legacy shader code
No point in exercising the file selector magic when there is only one possible path in Qt 6. Change-Id: I3b49b19d57a89855063e983ab0add13335840fb9 Reviewed-by: Andy Nichols <andy.nichols@qt.io>
Diffstat (limited to 'examples/quick/shadereffects/content/shaders/rhi/wobble.frag')
-rw-r--r--examples/quick/shadereffects/content/shaders/rhi/wobble.frag20
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/quick/shadereffects/content/shaders/rhi/wobble.frag b/examples/quick/shadereffects/content/shaders/rhi/wobble.frag
deleted file mode 100644
index a34481c2f2..0000000000
--- a/examples/quick/shadereffects/content/shaders/rhi/wobble.frag
+++ /dev/null
@@ -1,20 +0,0 @@
-#version 440
-
-layout(location = 0) in vec2 qt_TexCoord0;
-layout(location = 0) out vec4 fragColor;
-
-layout(binding = 1) uniform sampler2D source;
-
-layout(std140, binding = 0) uniform buf {
- mat4 qt_Matrix;
- float qt_Opacity;
- float amplitude;
- float frequency;
- float time;
-} ubuf;
-
-void main()
-{
- vec2 p = sin(ubuf.time + ubuf.frequency * qt_TexCoord0);
- fragColor = texture(source, qt_TexCoord0 + ubuf.amplitude * vec2(p.y, -p.x)) * ubuf.qt_Opacity;
-}