2014-06-27 12:14:24 -04:00
|
|
|
#if __VERSION__ >= 330
|
2014-06-24 17:17:41 -04:00
|
|
|
layout(location = 0) in vec3 Position;
|
|
|
|
layout(location = 1) in vec3 Normal;
|
2014-06-28 17:42:19 -04:00
|
|
|
layout(location = 2) in vec4 Color;
|
2014-06-24 17:17:41 -04:00
|
|
|
layout(location = 3) in vec2 Texcoord;
|
2014-09-14 17:07:10 -04:00
|
|
|
layout(location = 4) in vec2 SecondTexcoord;
|
2014-08-13 13:20:40 -04:00
|
|
|
layout(location = 5) in vec3 Tangent;
|
|
|
|
layout(location = 6) in vec3 Bitangent;
|
2014-06-29 16:19:10 -04:00
|
|
|
|
|
|
|
layout(location = 7) in vec3 Origin;
|
|
|
|
layout(location = 8) in vec3 Orientation;
|
|
|
|
layout(location = 9) in vec3 Scale;
|
2014-08-22 18:18:14 -04:00
|
|
|
#ifdef GL_ARB_bindless_texture
|
|
|
|
layout(location = 10) in sampler2D Handle;
|
|
|
|
layout(location = 11) in sampler2D SecondHandle;
|
2014-09-19 14:13:07 -04:00
|
|
|
layout(location = 13) in sampler2D ThirdHandle;
|
2014-08-22 18:18:14 -04:00
|
|
|
#endif
|
|
|
|
|
2014-06-27 12:14:24 -04:00
|
|
|
#else
|
|
|
|
in vec3 Position;
|
|
|
|
in vec3 Normal;
|
2014-06-28 17:42:19 -04:00
|
|
|
in vec4 Color;
|
2014-06-27 12:14:24 -04:00
|
|
|
in vec2 Texcoord;
|
2014-08-15 11:15:19 -04:00
|
|
|
in vec3 Tangent;
|
|
|
|
in vec3 Bitangent;
|
2014-06-29 16:19:10 -04:00
|
|
|
|
|
|
|
in vec3 Origin;
|
|
|
|
in vec3 Orientation;
|
|
|
|
in vec3 Scale;
|
2014-06-27 12:14:24 -04:00
|
|
|
#endif
|
2014-03-23 14:28:07 -04:00
|
|
|
|
2014-03-16 11:26:38 -04:00
|
|
|
out vec3 nor;
|
2014-08-13 13:20:40 -04:00
|
|
|
out vec3 tangent;
|
|
|
|
out vec3 bitangent;
|
2014-03-23 14:28:07 -04:00
|
|
|
out vec2 uv;
|
2014-09-14 17:07:10 -04:00
|
|
|
out vec2 uv_bis;
|
2014-06-28 17:42:19 -04:00
|
|
|
out vec4 color;
|
2014-08-22 18:18:14 -04:00
|
|
|
#ifdef GL_ARB_bindless_texture
|
|
|
|
flat out sampler2D handle;
|
|
|
|
flat out sampler2D secondhandle;
|
2014-09-19 14:13:07 -04:00
|
|
|
flat out sampler2D thirdhandle;
|
2014-08-22 18:18:14 -04:00
|
|
|
#endif
|
2014-03-16 11:26:38 -04:00
|
|
|
|
2014-03-31 12:10:45 -04:00
|
|
|
mat4 getWorldMatrix(vec3 translation, vec3 rotation, vec3 scale);
|
|
|
|
mat4 getInverseWorldMatrix(vec3 translation, vec3 rotation, vec3 scale);
|
2014-03-28 20:22:08 -04:00
|
|
|
|
2014-03-16 11:26:38 -04:00
|
|
|
void main(void)
|
|
|
|
{
|
2014-03-31 12:10:45 -04:00
|
|
|
mat4 ModelMatrix = getWorldMatrix(Origin, Orientation, Scale);
|
|
|
|
mat4 TransposeInverseModelView = transpose(getInverseWorldMatrix(Origin, Orientation, Scale) * InverseViewMatrix);
|
2014-09-05 17:41:12 -04:00
|
|
|
gl_Position = ProjectionViewMatrix * ModelMatrix * vec4(Position, 1.);
|
2014-03-16 11:26:38 -04:00
|
|
|
nor = (TransposeInverseModelView * vec4(Normal, 0.)).xyz;
|
2014-08-13 13:20:40 -04:00
|
|
|
tangent = (TransposeInverseModelView * vec4(Tangent, 1.)).xyz;
|
|
|
|
bitangent = (TransposeInverseModelView * vec4(Bitangent, 1.)).xyz;
|
2014-03-23 14:28:07 -04:00
|
|
|
uv = Texcoord;
|
2014-09-14 17:07:10 -04:00
|
|
|
uv_bis = SecondTexcoord;
|
2014-06-28 17:42:19 -04:00
|
|
|
color = Color.zyxw;
|
2014-08-22 18:18:14 -04:00
|
|
|
#ifdef GL_ARB_bindless_texture
|
|
|
|
handle = Handle;
|
|
|
|
secondhandle = SecondHandle;
|
2014-09-19 14:13:07 -04:00
|
|
|
thirdhandle = ThirdHandle;
|
2014-08-22 18:18:14 -04:00
|
|
|
#endif
|
2014-03-16 11:26:38 -04:00
|
|
|
}
|