aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders_ng/stencilclip.frag
blob: ec4d3a05b1659ef688e958f2d4782376d112daf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#version 440

layout(location = 0) out vec4 fragColor;

void main()
{
    fragColor = vec4(0.81, 0.83, 0.12, 1.0); // Trolltech green ftw!
}