2017-02-01 15:58:10 -05:00
|
|
|
#ifdef Explicit_Attrib_Location_Usable
|
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;
|
2016-11-27 21:47:14 -05:00
|
|
|
layout(location = 10) in vec4 misc_data;
|
2014-12-18 16:09:14 -05:00
|
|
|
#ifdef Use_Bindless_Texture
|
2016-11-27 21:47:14 -05:00
|
|
|
layout(location = 11) in sampler2D Handle;
|
|
|
|
layout(location = 12) in sampler2D SecondHandle;
|
2014-09-19 14:13:07 -04:00
|
|
|
layout(location = 13) in sampler2D ThirdHandle;
|
2016-11-27 21:47:14 -05:00
|
|
|
layout(location = 14) in sampler2D FourthHandle;
|
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-11-30 19:46:50 -05:00
|
|
|
in vec2 SecondTexcoord;
|
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;
|
2016-11-28 00:08:27 -05:00
|
|
|
in vec4 misc_data;
|
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;
|
2016-12-22 22:33:48 -05:00
|
|
|
flat out vec2 color_change;
|
2014-12-18 16:09:14 -05:00
|
|
|
#ifdef Use_Bindless_Texture
|
2014-08-22 18:18:14 -04:00
|
|
|
flat out sampler2D handle;
|
|
|
|
flat out sampler2D secondhandle;
|
2014-09-19 14:13:07 -04:00
|
|
|
flat out sampler2D thirdhandle;
|
2016-11-28 00:08:27 -05:00
|
|
|
flat out sampler2D fourthhandle;
|
2014-08-22 18:18:14 -04:00
|
|
|
#endif
|
2014-03-16 11:26:38 -04:00
|
|
|
|
2016-06-27 07:11:27 -04:00
|
|
|
#stk_include "utils/getworldmatrix.vert"
|
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.);
|
2015-01-12 17:01:35 -05:00
|
|
|
// Keep orthogonality
|
2014-03-16 11:26:38 -04:00
|
|
|
nor = (TransposeInverseModelView * vec4(Normal, 0.)).xyz;
|
2015-01-12 17:01:35 -05:00
|
|
|
// Keep direction
|
|
|
|
tangent = (ViewMatrix * ModelMatrix * vec4(Tangent, 0.)).xyz;
|
|
|
|
bitangent = (ViewMatrix * ModelMatrix * vec4(Bitangent, 0.)).xyz;
|
2016-11-28 02:44:14 -05:00
|
|
|
uv = vec2(Texcoord.x + misc_data.x, Texcoord.y + misc_data.y);
|
2014-09-14 17:07:10 -04:00
|
|
|
uv_bis = SecondTexcoord;
|
2014-06-28 17:42:19 -04:00
|
|
|
color = Color.zyxw;
|
2016-11-28 00:08:27 -05:00
|
|
|
color_change = misc_data.zw;
|
2014-12-18 16:09:14 -05:00
|
|
|
#ifdef Use_Bindless_Texture
|
2014-08-22 18:18:14 -04:00
|
|
|
handle = Handle;
|
|
|
|
secondhandle = SecondHandle;
|
2014-09-19 14:13:07 -04:00
|
|
|
thirdhandle = ThirdHandle;
|
2016-11-28 00:08:27 -05:00
|
|
|
fourthhandle = FourthHandle;
|
2014-08-22 18:18:14 -04:00
|
|
|
#endif
|
2014-03-16 11:26:38 -04:00
|
|
|
}
|