summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2022-09-12 11:48:16 -0500
committerDave Parks <davep@lindenlab.com>2022-09-12 11:48:16 -0500
commitd7c77e5c64ddfef44b3e47f4c7ae6943ff0e860a (patch)
treed04ed79aea3f90bda1797d1a06ec7000b704ad8c /indra/newview
parentc822da9fe644e4a420caabb30a25b487ce75c099 (diff)
SL-18095 WIP -- Use meshoptimizer to re-weld and cache optimize after generating tangents
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/app_settings/shaders/class1/deferred/pbropaqueV.glsl1
-rw-r--r--indra/newview/llface.cpp1
2 files changed, 0 insertions, 2 deletions
diff --git a/indra/newview/app_settings/shaders/class1/deferred/pbropaqueV.glsl b/indra/newview/app_settings/shaders/class1/deferred/pbropaqueV.glsl
index c90a17993f..5573c02a60 100644
--- a/indra/newview/app_settings/shaders/class1/deferred/pbropaqueV.glsl
+++ b/indra/newview/app_settings/shaders/class1/deferred/pbropaqueV.glsl
@@ -76,7 +76,6 @@ void main()
vary_texcoord0 = (texture_matrix0 * vec4(texcoord0,0,1)).xy;
vary_texcoord1 = (texture_matrix0 * vec4(texcoord1,0,1)).xy;
vary_texcoord2 = (texture_matrix0 * vec4(texcoord2,0,1)).xy;
-
#ifdef HAS_SKIN
vec3 n = (mat*vec4(normal.xyz+position.xyz,1.0)).xyz-pos.xyz;
vec3 t = (mat*vec4(tangent.xyz+position.xyz,1.0)).xyz-pos.xyz;
diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp
index 83d35b7f3c..2827329739 100644
--- a/indra/newview/llface.cpp
+++ b/indra/newview/llface.cpp
@@ -2189,7 +2189,6 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume,
{
LLVector4a tangent_out;
mat_normal.rotate(*src, tangent_out);
- tangent_out.normalize3();
tangent_out.setSelectWithMask(mask, *src, tangent_out);
tangent_out.store4a(tangents);