PageRenderTime 37ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/indra/newview/app_settings/shaders/class1/deferred/multiSpotLightMSF.glsl

https://bitbucket.org/lindenlab/viewer-beta/
text | 250 lines | 187 code | 63 blank | 0 comment | 0 complexity | 2e5c3edc9a9b5d1b5899697ba8277c43 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file multiSpotLightF.glsl
  3. *
  4. * $LicenseInfo:firstyear=2007&license=viewerlgpl$
  5. * Second Life Viewer Source Code
  6. * Copyright (C) 2007, Linden Research, Inc.
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation;
  11. * version 2.1 of the License only.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with this library; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. *
  22. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  23. * $/LicenseInfo$
  24. */
  25. //class 1 -- no shadows
  26. #extension GL_ARB_texture_rectangle : enable
  27. #extension GL_ARB_texture_multisample : enable
  28. uniform sampler2DMS diffuseRect;
  29. uniform sampler2DMS specularRect;
  30. uniform sampler2DMS depthMap;
  31. uniform sampler2DMS normalMap;
  32. uniform sampler2D noiseMap;
  33. uniform sampler2D lightFunc;
  34. uniform sampler2D projectionMap;
  35. uniform mat4 proj_mat; //screen space to light space
  36. uniform float proj_near; //near clip for projection
  37. uniform vec3 proj_p; //plane projection is emitting from (in screen space)
  38. uniform vec3 proj_n;
  39. uniform float proj_focus; //distance from plane to begin blurring
  40. uniform float proj_lod; //(number of mips in proj map)
  41. uniform float proj_range; //range between near clip and far clip plane of projection
  42. uniform float proj_ambient_lod;
  43. uniform float proj_ambiance;
  44. uniform float near_clip;
  45. uniform float far_clip;
  46. uniform vec3 proj_origin; //origin of projection to be used for angular attenuation
  47. uniform float sun_wash;
  48. uniform float shadow_fade;
  49. varying vec4 vary_light;
  50. varying vec4 vary_fragcoord;
  51. uniform vec2 screen_res;
  52. uniform mat4 inv_proj;
  53. vec4 texture2DLodSpecular(sampler2D projectionMap, vec2 tc, float lod)
  54. {
  55. vec4 ret = texture2DLod(projectionMap, tc, lod);
  56. vec2 dist = tc-vec2(0.5);
  57. float det = max(1.0-lod/(proj_lod*0.5), 0.0);
  58. float d = dot(dist,dist);
  59. ret *= min(clamp((0.25-d)/0.25, 0.0, 1.0)+det, 1.0);
  60. return ret;
  61. }
  62. vec4 texture2DLodDiffuse(sampler2D projectionMap, vec2 tc, float lod)
  63. {
  64. vec4 ret = texture2DLod(projectionMap, tc, lod);
  65. vec2 dist = vec2(0.5) - abs(tc-vec2(0.5));
  66. float det = min(lod/(proj_lod*0.5), 1.0);
  67. float d = min(dist.x, dist.y);
  68. float edge = 0.25*det;
  69. ret *= clamp(d/edge, 0.0, 1.0);
  70. return ret;
  71. }
  72. vec4 texture2DLodAmbient(sampler2D projectionMap, vec2 tc, float lod)
  73. {
  74. vec4 ret = texture2DLod(projectionMap, tc, lod);
  75. vec2 dist = tc-vec2(0.5);
  76. float d = dot(dist,dist);
  77. ret *= min(clamp((0.25-d)/0.25, 0.0, 1.0), 1.0);
  78. return ret;
  79. }
  80. vec4 getPosition(ivec2 pos_screen, int sample)
  81. {
  82. float depth = texelFetch(depthMap, pos_screen, sample).r;
  83. vec2 sc = vec2(pos_screen.xy)*2.0;
  84. sc /= screen_res;
  85. sc -= vec2(1.0,1.0);
  86. vec4 ndc = vec4(sc.x, sc.y, 2.0*depth-1.0, 1.0);
  87. vec4 pos = inv_proj * ndc;
  88. pos /= pos.w;
  89. pos.w = 1.0;
  90. return pos;
  91. }
  92. void main()
  93. {
  94. int wght = 0;
  95. vec3 fcol = vec3(0,0,0);
  96. vec2 frag = (vary_fragcoord.xy*0.5+0.5)*screen_res;
  97. ivec2 itc = ivec2(frag.xy);
  98. for (int i = 0; i < samples; ++i)
  99. {
  100. vec3 pos = getPosition(itc, i).xyz;
  101. vec3 lv = vary_light.xyz-pos.xyz;
  102. float dist2 = dot(lv,lv);
  103. dist2 /= vary_light.w;
  104. if (dist2 <= 1.0)
  105. {
  106. vec3 norm = texelFetch(normalMap, itc, i).xyz*2.0-1.0;
  107. norm = normalize(norm);
  108. float l_dist = -dot(lv, proj_n);
  109. vec4 proj_tc = (proj_mat * vec4(pos.xyz, 1.0));
  110. if (proj_tc.z >= 0.0)
  111. {
  112. proj_tc.xyz /= proj_tc.w;
  113. float fa = gl_Color.a+1.0;
  114. float dist_atten = min(1.0-(dist2-1.0*(1.0-fa))/fa, 1.0);
  115. if (dist_atten > 0.0)
  116. {
  117. lv = proj_origin-pos.xyz;
  118. lv = normalize(lv);
  119. float da = dot(norm, lv);
  120. vec3 col = vec3(0,0,0);
  121. vec3 diff_tex = texelFetch(diffuseRect, itc, i).rgb;
  122. float noise = texture2D(noiseMap, frag.xy/128.0).b;
  123. if (proj_tc.z > 0.0 &&
  124. proj_tc.x < 1.0 &&
  125. proj_tc.y < 1.0 &&
  126. proj_tc.x > 0.0 &&
  127. proj_tc.y > 0.0)
  128. {
  129. float lit = 0.0;
  130. float amb_da = proj_ambiance;
  131. if (da > 0.0)
  132. {
  133. float diff = clamp((l_dist-proj_focus)/proj_range, 0.0, 1.0);
  134. float lod = diff * proj_lod;
  135. vec4 plcol = texture2DLodDiffuse(projectionMap, proj_tc.xy, lod);
  136. vec3 lcol = gl_Color.rgb * plcol.rgb * plcol.a;
  137. lit = da * dist_atten * noise;
  138. col = lcol*lit*diff_tex;
  139. amb_da += (da*0.5)*proj_ambiance;
  140. }
  141. //float diff = clamp((proj_range-proj_focus)/proj_range, 0.0, 1.0);
  142. vec4 amb_plcol = texture2DLodAmbient(projectionMap, proj_tc.xy, proj_lod);
  143. amb_da += (da*da*0.5+0.5)*proj_ambiance;
  144. amb_da *= dist_atten * noise;
  145. amb_da = min(amb_da, 1.0-lit);
  146. col += amb_da*gl_Color.rgb*diff_tex.rgb*amb_plcol.rgb*amb_plcol.a;
  147. }
  148. vec4 spec = texelFetch(specularRect, itc, i);
  149. if (spec.a > 0.0)
  150. {
  151. vec3 ref = reflect(normalize(pos), norm);
  152. //project from point pos in direction ref to plane proj_p, proj_n
  153. vec3 pdelta = proj_p-pos;
  154. float ds = dot(ref, proj_n);
  155. if (ds < 0.0)
  156. {
  157. vec3 pfinal = pos + ref * dot(pdelta, proj_n)/ds;
  158. vec4 stc = (proj_mat * vec4(pfinal.xyz, 1.0));
  159. if (stc.z > 0.0)
  160. {
  161. stc.xy /= stc.w;
  162. float fatten = clamp(spec.a*spec.a+spec.a*0.5, 0.25, 1.0);
  163. stc.xy = (stc.xy - vec2(0.5)) * fatten + vec2(0.5);
  164. if (stc.x < 1.0 &&
  165. stc.y < 1.0 &&
  166. stc.x > 0.0 &&
  167. stc.y > 0.0)
  168. {
  169. vec4 scol = texture2DLodSpecular(projectionMap, stc.xy, proj_lod-spec.a*proj_lod);
  170. col += dist_atten*scol.rgb*gl_Color.rgb*scol.a*spec.rgb;
  171. }
  172. }
  173. }
  174. }
  175. fcol += col;
  176. ++wght;
  177. }
  178. }
  179. }
  180. }
  181. if (wght <= 0)
  182. {
  183. discard;
  184. }
  185. gl_FragColor.rgb = fcol/samples;
  186. gl_FragColor.a = 0.0;
  187. }