aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lightmapviewer/mesh.vert
blob: 63d5ed91bfca5cd3ef85318091ba68938861a2fc (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

VARYING vec2 texcoord;

void MAIN() {
    texcoord = UV0;
    POSITION = MODELVIEWPROJECTION_MATRIX * vec4(VERTEX, 1.0);
}