PageRenderTime 31ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/lindenlab/viewer-beta/
text | 252 lines | 191 code | 61 blank | 0 comment | 0 complexity | 80c871a697abe2eb3a81e6469056921b 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 int proj_shadow_idx;
  49. uniform float shadow_fade;
  50. varying vec4 vary_light;
  51. varying vec4 vary_fragcoord;
  52. uniform vec2 screen_res;
  53. uniform mat4 inv_proj;
  54. vec4 texture2DLodSpecular(sampler2D projectionMap, vec2 tc, float lod)
  55. {
  56. vec4 ret = texture2DLod(projectionMap, tc, lod);
  57. vec2 dist = tc-vec2(0.5);
  58. float det = max(1.0-lod/(proj_lod*0.5), 0.0);
  59. float d = dot(dist,dist);
  60. ret *= min(clamp((0.25-d)/0.25, 0.0, 1.0)+det, 1.0);
  61. return ret;
  62. }
  63. vec4 texture2DLodDiffuse(sampler2D projectionMap, vec2 tc, float lod)
  64. {
  65. vec4 ret = texture2DLod(projectionMap, tc, lod);
  66. vec2 dist = vec2(0.5) - abs(tc-vec2(0.5));
  67. float det = min(lod/(proj_lod*0.5), 1.0);
  68. float d = min(dist.x, dist.y);
  69. float edge = 0.25*det;
  70. ret *= clamp(d/edge, 0.0, 1.0);
  71. return ret;
  72. }
  73. vec4 texture2DLodAmbient(sampler2D projectionMap, vec2 tc, float lod)
  74. {
  75. vec4 ret = texture2DLod(projectionMap, tc, lod);
  76. vec2 dist = tc-vec2(0.5);
  77. float d = dot(dist,dist);
  78. ret *= min(clamp((0.25-d)/0.25, 0.0, 1.0), 1.0);
  79. return ret;
  80. }
  81. vec4 getPosition(ivec2 pos_screen, int sample)
  82. {
  83. float depth = texelFetch(depthMap, pos_screen, sample).r;
  84. vec2 sc = vec2(pos_screen.xy)*2.0;
  85. sc /= screen_res;
  86. sc -= vec2(1.0,1.0);
  87. vec4 ndc = vec4(sc.x, sc.y, 2.0*depth-1.0, 1.0);
  88. vec4 pos = inv_proj * ndc;
  89. pos /= pos.w;
  90. pos.w = 1.0;
  91. return pos;
  92. }
  93. void main()
  94. {
  95. vec4 frag = vary_fragcoord;
  96. frag.xyz /= frag.w;
  97. frag.xyz = frag.xyz*0.5+0.5;
  98. frag.xy *= screen_res;
  99. ivec2 itc = ivec2(frag.xy);
  100. vec3 fcol = vec3(0,0,0);
  101. int wght = 0;
  102. for (int i = 0; i < samples; ++i)
  103. {
  104. vec3 pos = getPosition(itc, i).xyz;
  105. vec3 lv = vary_light.xyz-pos.xyz;
  106. float dist2 = dot(lv,lv);
  107. dist2 /= vary_light.w;
  108. if (dist2 <= 1.0)
  109. {
  110. vec3 norm = texelFetch(normalMap, itc, i).xyz*2.0-1.0;
  111. norm = normalize(norm);
  112. float l_dist = -dot(lv, proj_n);
  113. vec4 proj_tc = (proj_mat * vec4(pos.xyz, 1.0));
  114. if (proj_tc.z >= 0.0)
  115. {
  116. proj_tc.xyz /= proj_tc.w;
  117. float fa = gl_Color.a+1.0;
  118. float dist_atten = min(1.0-(dist2-1.0*(1.0-fa))/fa, 1.0);
  119. if (dist_atten > 0.0)
  120. {
  121. lv = proj_origin-pos.xyz;
  122. lv = normalize(lv);
  123. float da = dot(norm, lv);
  124. vec3 col = vec3(0,0,0);
  125. vec3 diff_tex = texelFetch(diffuseRect, itc, i).rgb;
  126. float noise = texture2D(noiseMap, frag.xy/128.0).b;
  127. if (proj_tc.z > 0.0 &&
  128. proj_tc.x < 1.0 &&
  129. proj_tc.y < 1.0 &&
  130. proj_tc.x > 0.0 &&
  131. proj_tc.y > 0.0)
  132. {
  133. float lit = 0.0;
  134. float amb_da = proj_ambiance;
  135. if (da > 0.0)
  136. {
  137. float diff = clamp((l_dist-proj_focus)/proj_range, 0.0, 1.0);
  138. float lod = diff * proj_lod;
  139. vec4 plcol = texture2DLodDiffuse(projectionMap, proj_tc.xy, lod);
  140. vec3 lcol = gl_Color.rgb * plcol.rgb * plcol.a;
  141. lit = da * dist_atten * noise;
  142. col = lcol*lit*diff_tex;
  143. amb_da += (da*0.5)*proj_ambiance;
  144. }
  145. //float diff = clamp((proj_range-proj_focus)/proj_range, 0.0, 1.0);
  146. vec4 amb_plcol = texture2DLodAmbient(projectionMap, proj_tc.xy, proj_lod);
  147. amb_da += (da*da*0.5+0.5)*proj_ambiance;
  148. amb_da *= dist_atten * noise;
  149. amb_da = min(amb_da, 1.0-lit);
  150. col += amb_da*gl_Color.rgb*diff_tex.rgb*amb_plcol.rgb*amb_plcol.a;
  151. }
  152. vec4 spec = texelFetch(specularRect, itc, i);
  153. if (spec.a > 0.0)
  154. {
  155. vec3 ref = reflect(normalize(pos), norm);
  156. //project from point pos in direction ref to plane proj_p, proj_n
  157. vec3 pdelta = proj_p-pos;
  158. float ds = dot(ref, proj_n);
  159. if (ds < 0.0)
  160. {
  161. vec3 pfinal = pos + ref * dot(pdelta, proj_n)/ds;
  162. vec4 stc = (proj_mat * vec4(pfinal.xyz, 1.0));
  163. if (stc.z > 0.0)
  164. {
  165. stc.xy /= stc.w;
  166. float fatten = clamp(spec.a*spec.a+spec.a*0.5, 0.25, 1.0);
  167. stc.xy = (stc.xy - vec2(0.5)) * fatten + vec2(0.5);
  168. if (stc.x < 1.0 &&
  169. stc.y < 1.0 &&
  170. stc.x > 0.0 &&
  171. stc.y > 0.0)
  172. {
  173. vec4 scol = texture2DLodSpecular(projectionMap, stc.xy, proj_lod-spec.a*proj_lod);
  174. col += dist_atten*scol.rgb*gl_Color.rgb*scol.a*spec.rgb;
  175. }
  176. }
  177. }
  178. }
  179. fcol += col;
  180. ++wght;
  181. }
  182. }
  183. }
  184. }
  185. if (wght <= 0)
  186. {
  187. discard;
  188. }
  189. gl_FragColor.rgb = fcol/samples;
  190. gl_FragColor.a = 0.0;
  191. }