diff options
| author | Runitai Linden <davep@lindenlab.com> | 2020-03-16 12:10:34 -0500 | 
|---|---|---|
| committer | Runitai Linden <davep@lindenlab.com> | 2020-03-16 12:10:34 -0500 | 
| commit | 8c1b9d3e7a194c106ee79067e3136c37ea7e84e1 (patch) | |
| tree | 0912d3703218acfce9153de107139a263d068e19 /indra | |
| parent | 223d9d143e6acf1fedd3cddabce0567f6fa0a382 (diff) | |
Add missing fullbrightAtmosTransportFrag stub.
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/app_settings/shaders/class1/windlight/transportF.glsl | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/indra/newview/app_settings/shaders/class1/windlight/transportF.glsl b/indra/newview/app_settings/shaders/class1/windlight/transportF.glsl index 79d8d11b32..a937d9fa99 100644 --- a/indra/newview/app_settings/shaders/class1/windlight/transportF.glsl +++ b/indra/newview/app_settings/shaders/class1/windlight/transportF.glsl @@ -37,6 +37,12 @@ vec3 atmosTransport(vec3 light)      return light;  } +vec3 fullbrightAtmosTransportFrag(vec3 light, vec3 additive, vec3 atten) +{ +    /* stub function for fallback compatibility on class1 hardware */ +    return light; +} +  vec3 fullbrightAtmosTransport(vec3 light)  {      /* stub function for fallback compatibility on class1 hardware */ | 
