aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/scenegraph/custommaterial/shaders/mandelbrot.vert
diff options
context:
space:
mode:
authorPaul Olav Tvete <paul.tvete@qt.io>2020-06-18 15:32:21 +0200
committerPaul Olav Tvete <paul.tvete@qt.io>2020-06-24 19:48:45 +0200
commit2be6c85b8023f41d964c4c9d45343368b26a0830 (patch)
treed39f44cee9aeb86e1205cd5c95f41b2c99c977a6 /examples/quick/scenegraph/custommaterial/shaders/mandelbrot.vert
parentaf34b83c17861622a7d462c603a5c164e6e9e55a (diff)
New custom material example
Fixes: QTBUG-78577 Change-Id: I280ffeda4bba1a9c170feb1ffa4b6c95eb0e6d28 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
Diffstat (limited to 'examples/quick/scenegraph/custommaterial/shaders/mandelbrot.vert')
-rw-r--r--examples/quick/scenegraph/custommaterial/shaders/mandelbrot.vert22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/quick/scenegraph/custommaterial/shaders/mandelbrot.vert b/examples/quick/scenegraph/custommaterial/shaders/mandelbrot.vert
new file mode 100644
index 0000000000..00c519cd9d
--- /dev/null
+++ b/examples/quick/scenegraph/custommaterial/shaders/mandelbrot.vert
@@ -0,0 +1,22 @@
+#version 440
+
+layout(location = 0) in vec4 aVertex;
+layout(location = 1) in vec2 aTexCoord;
+
+layout(location = 0) out vec2 vTexCoord;
+
+layout(std140, binding = 0) uniform buf {
+ mat4 qt_Matrix;
+ float qt_Opacity;
+ float scale;
+ vec2 center;
+ int limit;
+} ubuf;
+
+out gl_PerVertex { vec4 gl_Position; };
+
+void main()
+{
+ gl_Position = ubuf.qt_Matrix * aVertex;
+ vTexCoord = aTexCoord;
+}