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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file gammaF.glsl
  3.  *
  4.  * Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
  5.  * $License$
  6.  */
  7. uniform vec4 gamma;
  8. /// Soft clips the light with a gamma correction
  9. vec3 scaleSoftClip(vec3 light) {
  10. // For compatibility with lower cards. Do nothing.
  11. return light;
  12. }
  13. vec3 fullbrightScaleSoftClip(vec3 light) {
  14. return scaleSoftClip(light);
  15. }