summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/Qt3DBench/shaders/shadowmap.vert
blob: c71374ea63d0dccbe2a4a3421429e6960f064343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#version 150 core

in vec3 vertexPosition;

uniform mat4 mvp;

void main()
{
    gl_Position = mvp * vec4(vertexPosition, 1.0);
}