deferred_post_multipass.hlsl.program
上传用户:xhbjoy
上传日期:2014-10-07
资源大小:38068k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // Post processors
  2. fragment_program DeferredShading/post/hlsl/Ambient_ps hlsl
  3. {
  4. source DeferredShading/post/hlsl/Ambient_ps.hlsl
  5. target ps_2_0
  6. entry_point main
  7. default_params
  8. {
  9. param_named_auto ambientColor ambient_light_colour 0
  10. param_named_auto proj projection_matrix
  11. }
  12. }
  13. fragment_program DeferredShading/post/hlsl/GlobalLight_ps hlsl
  14. {
  15. source DeferredShading/post/hlsl/GlobalLight_ps.hlsl
  16. target ps_2_0
  17. entry_point main
  18. default_params
  19. {
  20. //param_named_auto invProj inverse_projection_matrix
  21. param_named_auto lightPos0 light_position_view_space 0
  22. param_named_auto lightDiffuseColor0 light_diffuse_colour 0
  23. param_named_auto lightSpecularColor0 light_specular_colour 0
  24. }
  25. }