2014-05-07 15:10:42 +08:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
2014-08-15 06:14:51 +02:00
|
|
|
#version 150 core
|
2014-08-15 05:59:28 +02:00
|
|
|
|
2014-08-15 06:26:02 +02:00
|
|
|
in vec4 vPosition;
|
|
|
|
in vec2 texCoord;
|
|
|
|
out vec2 vTexCoord;
|
2014-05-07 15:10:42 +08:00
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_Position = vPosition;
|
|
|
|
vTexCoord = texCoord;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|