2014-05-19 05:49:16 +08:00
|
|
|
|
|
|
|
const char* cc3D_PositionTex_vert = STRINGIFY(
|
|
|
|
|
|
|
|
attribute vec4 a_position;
|
|
|
|
attribute vec2 a_texCoord;
|
|
|
|
|
|
|
|
varying vec2 TextureCoordOut;
|
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
gl_Position = CC_MVPMatrix * a_position;
|
|
|
|
TextureCoordOut = a_texCoord;
|
|
|
|
TextureCoordOut.y = 1.0 - TextureCoordOut.y;
|
|
|
|
}
|
|
|
|
);
|
2014-06-05 16:36:01 +08:00
|
|
|
|
|
|
|
const char* cc3D_SkinPositionTex_vert = STRINGIFY(
|
|
|
|
attribute vec4 a_position;
|
|
|
|
|
2014-06-09 18:37:58 +08:00
|
|
|
attribute vec4 a_blendWeight;
|
|
|
|
attribute vec4 a_blendIndex;
|
2014-06-05 16:36:01 +08:00
|
|
|
|
|
|
|
attribute vec2 a_texCoord;
|
|
|
|
|
|
|
|
const int SKINNING_JOINT_COUNT = 30;
|
|
|
|
// Uniforms
|
|
|
|
uniform vec4 u_matrixPalette[SKINNING_JOINT_COUNT * 3];
|
|
|
|
|
|
|
|
// Varyings
|
|
|
|
varying vec2 TextureCoordOut;
|
|
|
|
|
|
|
|
vec4 _skinnedPosition;
|
|
|
|
vec4 tmp;
|
|
|
|
|
|
|
|
void skinPosition(float blendWeight, int matrixIndex)
|
|
|
|
{
|
|
|
|
tmp.x = dot(a_position, u_matrixPalette[matrixIndex]);
|
|
|
|
tmp.y = dot(a_position, u_matrixPalette[matrixIndex + 1]);
|
|
|
|
tmp.z = dot(a_position, u_matrixPalette[matrixIndex + 2]);
|
|
|
|
tmp.w = a_position.w;
|
|
|
|
_skinnedPosition += blendWeight * tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
vec4 getPosition()
|
|
|
|
{
|
|
|
|
_skinnedPosition = vec4(0.0);
|
|
|
|
|
2014-06-09 18:37:58 +08:00
|
|
|
float blendWeight = a_blendWeight[0];
|
|
|
|
int matrixIndex = int (a_blendIndex[0]) * 3;
|
2014-06-05 16:36:01 +08:00
|
|
|
skinPosition(blendWeight, matrixIndex);
|
|
|
|
|
2014-06-09 18:37:58 +08:00
|
|
|
blendWeight = a_blendWeight[1];
|
|
|
|
matrixIndex = int(a_blendIndex[1]) * 3;
|
2014-06-05 16:36:01 +08:00
|
|
|
skinPosition(blendWeight, matrixIndex);
|
|
|
|
|
2014-06-09 18:37:58 +08:00
|
|
|
blendWeight = a_blendWeight[2];
|
|
|
|
matrixIndex = int(a_blendIndex[2]) * 3;
|
2014-06-05 16:36:01 +08:00
|
|
|
skinPosition(blendWeight, matrixIndex);
|
|
|
|
|
2014-06-09 18:37:58 +08:00
|
|
|
blendWeight = a_blendWeight[3];
|
|
|
|
matrixIndex = int(a_blendIndex[3]) * 3;
|
2014-06-05 16:36:01 +08:00
|
|
|
skinPosition(blendWeight, matrixIndex);
|
2014-06-09 18:37:58 +08:00
|
|
|
|
2014-06-05 16:36:01 +08:00
|
|
|
return _skinnedPosition;
|
|
|
|
}
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2014-06-12 15:53:41 +08:00
|
|
|
vec4 position = a_position;//getPosition();
|
2014-06-05 16:36:01 +08:00
|
|
|
gl_Position = CC_MVPMatrix * position;
|
|
|
|
|
|
|
|
TextureCoordOut = a_texCoord;
|
|
|
|
TextureCoordOut.y = 1.0 - TextureCoordOut.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
);
|