aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders_ng/stencilclip.frag
blob: 215af7d7b9258d1fa18b3f391b610ccc4432ae7a (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

#version 440

layout(location = 0) out vec4 fragColor;

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