OpenMW Andriod -- Graphics Issues... Any Ideas?

For new and upcoming OpenMW branches and ports; move fast and break things!
User avatar
psi29a
Posts: 5360
Joined: 29 Sep 2011, 10:13
Location: Belgium
Gitlab profile: https://gitlab.com/psi29a/
Contact:

Re: OpenMW Andriod -- Graphics Issues... Any Ideas?

Post by psi29a »

Thank you for taking the time to post. :)

We'll make something work!
User avatar
AnyOldName3
Posts: 2671
Joined: 26 Nov 2015, 03:25

Re: OpenMW Andriod -- Graphics Issues... Any Ideas?

Post by AnyOldName3 »

Code: Select all

     vec3 scatterColour = mix(vec3(SCATTER_COLOUR)*vec3(1.0,0.4,0.0), SCATTER_COLOUR, clamp(1.0-exp(-sunHeight*SUN_EXT), 0.0, 1.0));
 
     // fresnel
-    float ior = (cameraPos.z>0.0)?(1.333/1.0):(1.0/1.333); // air to water; water to air
+    float ior = (cameraPos.z>0.0)?(1.333/1.0):(1.450/1.0); // air to water; water to air
     float fresnel = fresnel_dielectric(vVec, normal, ior);
 
     fresnel = clamp(fresnel, 0.0, 1.0);
This change looks bad to me. If it fixes a problem, the cause of the problem is elsewhere.
Post Reply