Lucie Gérard 6ea0f82fb8 Add copyright and licensing to .glsl missing them
Task-number: QTBUG-124453
Change-Id: Ib0923de6e33eb0a698c6cd44583a0a860c5c468c
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
2024-05-03 14:04:52 +02:00

11 lines
232 B
GLSL

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
uniform sampler2D texture;
varying vec2 v_texcoord;
void main()
{
gl_FragColor = texture2D(texture, v_texcoord);
}