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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file atmosphericsF.glsl
  3.  *
  4.  * Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
  5.  * $License$
  6.  */
  7. //////////////////////////////////////////////////////////
  8. // The fragment shader for the terrain atmospherics
  9. //////////////////////////////////////////////////////////
  10. vec3 getAdditiveColor();
  11. vec3 getAtmosAttenuation();
  12. uniform sampler2D cloudMap;
  13. uniform vec4 cloud_pos_density1;
  14. vec3 atmosLighting(vec3 light)
  15. {
  16. light *= getAtmosAttenuation().r;
  17. light += getAdditiveColor();
  18. return (2.0 * light);
  19. }