fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / chart2 / opengl / shape3DVertexShader.glsl
blob9b763c968e15d45ea127daea6c4322ae0ee35779
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  */
10 #version 330 core
12 in vec3 vertexPositionModelspace;
13 in vec3 vertexNormalModelspace;
15 out vec3 positionWorldspace;
16 out vec3 normalCameraspace;
18 uniform mat4 P;
19 uniform mat4 M;
20 uniform mat4 V;
21 uniform mat3 normalMatrix;
23 void main()
25     positionWorldspace = (M * vec4(vertexPositionModelspace,1)).xyz;
27     gl_Position =  P * V * vec4(positionWorldspace,1);
29     normalCameraspace = normalize(mat3(V) * normalMatrix * vertexNormalModelspace);
32 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */