avatarShadowV.glsl
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:1k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file avatarShadowV.glsl
  3.  *
  4.  * Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
  5.  * $License$
  6.  */
  7. mat4 getSkinnedTransform();
  8. attribute vec4 weight;
  9. void main()
  10. {
  11. gl_TexCoord[0] = gl_MultiTexCoord0;
  12. vec4 pos;
  13. vec3 norm;
  14. mat4 trans = getSkinnedTransform();
  15. pos.x = dot(trans[0], gl_Vertex);
  16. pos.y = dot(trans[1], gl_Vertex);
  17. pos.z = dot(trans[2], gl_Vertex);
  18. pos.w = 1.0;
  19. norm.x = dot(trans[0].xyz, gl_Normal);
  20. norm.y = dot(trans[1].xyz, gl_Normal);
  21. norm.z = dot(trans[2].xyz, gl_Normal);
  22. norm = normalize(norm);
  23. pos = gl_ProjectionMatrix * pos;
  24. pos.z = max(pos.z, -pos.w+0.01);
  25. gl_Position = pos;
  26. gl_FrontColor = gl_Color;
  27. }