mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
2.6 KiB
96 lines
2.6 KiB
|
13 years ago
|
/*
|
||
|
|
This file is part of Magnum.
|
||
|
|
|
||
|
7 years ago
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019
|
||
|
12 years ago
|
Vladimír Vondruš <mosra@centrum.cz>
|
||
|
13 years ago
|
|
||
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||
|
|
copy of this software and associated documentation files (the "Software"),
|
||
|
|
to deal in the Software without restriction, including without limitation
|
||
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
||
|
|
Software is furnished to do so, subject to the following conditions:
|
||
|
|
|
||
|
|
The above copyright notice and this permission notice shall be included
|
||
|
|
in all copies or substantial portions of the Software.
|
||
|
|
|
||
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||
|
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||
|
|
DEALINGS IN THE SOFTWARE.
|
||
|
|
*/
|
||
|
|
|
||
|
14 years ago
|
#ifndef NEW_GLSL
|
||
|
|
#define in attribute
|
||
|
13 years ago
|
#define out varying
|
||
|
14 years ago
|
#endif
|
||
|
|
|
||
|
14 years ago
|
#ifdef EXPLICIT_UNIFORM_LOCATION
|
||
|
11 years ago
|
layout(location = 0)
|
||
|
14 years ago
|
#endif
|
||
|
6 years ago
|
#ifdef TWO_DIMENSIONS
|
||
|
8 years ago
|
uniform highp mat3 transformationProjectionMatrix
|
||
|
|
#ifndef GL_ES
|
||
|
|
= mat3(1.0)
|
||
|
|
#endif
|
||
|
|
;
|
||
|
6 years ago
|
#elif defined(THREE_DIMENSIONS)
|
||
|
|
uniform highp mat4 transformationProjectionMatrix
|
||
|
|
#ifndef GL_ES
|
||
|
|
= mat4(1.0)
|
||
|
|
#endif
|
||
|
|
;
|
||
|
|
#else
|
||
|
|
#error
|
||
|
|
#endif
|
||
|
14 years ago
|
|
||
|
6 years ago
|
#ifdef TEXTURE_TRANSFORMATION
|
||
|
|
#ifdef EXPLICIT_UNIFORM_LOCATION
|
||
|
|
layout(location = 1)
|
||
|
|
#endif
|
||
|
|
uniform mediump mat3 textureMatrix
|
||
|
|
#ifndef GL_ES
|
||
|
|
= mat3(1.0)
|
||
|
|
#endif
|
||
|
|
;
|
||
|
|
#endif
|
||
|
|
|
||
|
14 years ago
|
#ifdef EXPLICIT_ATTRIB_LOCATION
|
||
|
11 years ago
|
layout(location = POSITION_ATTRIBUTE_LOCATION)
|
||
|
14 years ago
|
#endif
|
||
|
6 years ago
|
#ifdef TWO_DIMENSIONS
|
||
|
11 years ago
|
in highp vec2 position;
|
||
|
6 years ago
|
#elif defined(THREE_DIMENSIONS)
|
||
|
|
in highp vec4 position;
|
||
|
|
#else
|
||
|
|
#error
|
||
|
|
#endif
|
||
|
14 years ago
|
|
||
|
13 years ago
|
#ifdef EXPLICIT_ATTRIB_LOCATION
|
||
|
11 years ago
|
layout(location = TEXTURECOORDINATES_ATTRIBUTE_LOCATION)
|
||
|
13 years ago
|
#endif
|
||
|
11 years ago
|
in mediump vec2 textureCoordinates;
|
||
|
|
|
||
|
13 years ago
|
out mediump vec2 interpolatedTextureCoordinates;
|
||
|
7 years ago
|
|
||
|
14 years ago
|
void main() {
|
||
|
6 years ago
|
#ifdef TWO_DIMENSIONS
|
||
|
13 years ago
|
gl_Position.xywz = vec4(transformationProjectionMatrix*vec3(position, 1.0), 0.0);
|
||
|
6 years ago
|
#elif defined(THREE_DIMENSIONS)
|
||
|
|
gl_Position = transformationProjectionMatrix*position;
|
||
|
|
#else
|
||
|
|
#error
|
||
|
|
#endif
|
||
|
13 years ago
|
|
||
|
6 years ago
|
interpolatedTextureCoordinates =
|
||
|
|
#ifdef TEXTURE_TRANSFORMATION
|
||
|
|
(textureMatrix*vec3(textureCoordinates, 1.0)).xy
|
||
|
|
#else
|
||
|
|
textureCoordinates
|
||
|
|
#endif
|
||
|
|
;
|
||
|
14 years ago
|
}
|