summaryrefslogtreecommitdiffstats
path: root/tests/auto/gui/rhi/qrhi/data/textured.frag
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-10-11 01:01:14 +0200
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-10-11 01:01:15 +0200
commit50d41f14eecc32e374ca34f76d45d65684a640c8 (patch)
tree1c38a164c1604139103aa69d88e8d184112f1b11 /tests/auto/gui/rhi/qrhi/data/textured.frag
parente1fd6074935cd0be0df14d89eb0244fcbd1677cf (diff)
parent5e421957de544224511c4823a4829ed2a34317d0 (diff)
Merge remote-tracking branch 'origin/5.15' into dev
Diffstat (limited to 'tests/auto/gui/rhi/qrhi/data/textured.frag')
-rw-r--r--tests/auto/gui/rhi/qrhi/data/textured.frag19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/auto/gui/rhi/qrhi/data/textured.frag b/tests/auto/gui/rhi/qrhi/data/textured.frag
new file mode 100644
index 0000000000..605410b028
--- /dev/null
+++ b/tests/auto/gui/rhi/qrhi/data/textured.frag
@@ -0,0 +1,19 @@
+#version 440
+
+layout(location = 0) in vec2 uv;
+layout(location = 0) out vec4 fragColor;
+
+layout(std140, binding = 0) uniform buf {
+ mat4 matrix;
+ float opacity;
+} ubuf;
+
+layout(binding = 1) uniform sampler2D tex;
+
+void main()
+{
+ vec4 c = texture(tex, uv);
+ c.a *= ubuf.opacity;
+ c.rgb *= c.a;
+ fragColor = c;
+}