summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class1
diff options
context:
space:
mode:
authorCosmic Linden <cosmic@lindenlab.com>2023-10-13 10:39:56 -0700
committerCosmic Linden <cosmic@lindenlab.com>2023-10-13 10:39:56 -0700
commitbb0ae367d705e6d45f21526b26caa962824d6375 (patch)
treea90e258412faa227f220d90c08b4b9feab27c182 /indra/newview/app_settings/shaders/class1
parenta8d69a4baecfae81b4adb68992f02e3ebc47b876 (diff)
DRTVWR-592: (WIP) Test impact of higher threshold on performance and visuals
Diffstat (limited to 'indra/newview/app_settings/shaders/class1')
-rw-r--r--indra/newview/app_settings/shaders/class1/deferred/pbrterrainUtilF.glsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/app_settings/shaders/class1/deferred/pbrterrainUtilF.glsl b/indra/newview/app_settings/shaders/class1/deferred/pbrterrainUtilF.glsl
index e69ee54a8c..4f2619f811 100644
--- a/indra/newview/app_settings/shaders/class1/deferred/pbrterrainUtilF.glsl
+++ b/indra/newview/app_settings/shaders/class1/deferred/pbrterrainUtilF.glsl
@@ -111,7 +111,7 @@ vec3 terrain_texture_normal(sampler2D tex, TerrainCoord terrain_coord)
{
float sharpness = TERRAIN_TRIPLANAR_BLEND_FACTOR;
vec3 weight = pow(abs(vary_vertex_normal), vec3(sharpness));
- float threshold = 0.01;
+ float threshold = 0.1;
weight = max(vec3(0), sign(weight - threshold));
int sample_type = (int(weight.x) << 2) |
(int(weight.y) << 1) |