vertex.vsd
上传用户:junlon
上传日期:2022-01-05
资源大小:39075k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // vertex shader file: vertex.vsd
  2. vs_2_0
  3. // c0,c1,c2,c3   hold the worldviewproj matrix
  4. // c4 hold the ambient light color
  5. dcl_position v0    //input position
  6. dcl_color v1
  7. //dcl_texcoord v2    //input texcoordinate 
  8. m4x4 r0, v0, c0     //transformation with the worldViewProj matrix
  9. // r0.x = v0.x*c0.x + v0.y*c0.y + v0.z*c0.z + v0.w*c0.w
  10. // r0.y = v0.x*c1.x + v0.y*c1.y + v0.z*c1.z + v0.w*c1.w
  11. // r0.z = v0.x*c2.x + v0.y*c2.y + v0.z*c2.z + v0.w*c2.w
  12. // r0.w = v0.x*c3.x + v0.y*c3.y + v0.z*c3.z + v0.w*c3.w
  13. mov oPos, r0  //output the position ,which is transformed by the WORLD_VIEW_PROJ matrix
  14. mov oD0, v1   //output the diffuse color
  15. //mov oT0, v2   //output the coodinate