diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-06-10 20:03:54 +0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-10 20:03:54 +0300 | 
| commit | f74c10c4ec6435471bac84473fe865f90843c2df (patch) | |
| tree | b2853d87789dbb84d6c26c259eab6639d3a7e482 /indra/newview/llviewerjointmesh.cpp | |
| parent | 5fccb539937a52d286274a002266e022e2102e5e (diff) | |
| parent | 32fcefc058ae38eff0572326ef3efd1c7b343144 (diff) | |
Merge branch 'DRTVWR-600-maint-A' into signal/trim-trailing
Diffstat (limited to 'indra/newview/llviewerjointmesh.cpp')
| -rw-r--r-- | indra/newview/llviewerjointmesh.cpp | 22 | 
1 files changed, 11 insertions, 11 deletions
diff --git a/indra/newview/llviewerjointmesh.cpp b/indra/newview/llviewerjointmesh.cpp index fa3bfe6e2a..f0567b18c4 100644 --- a/indra/newview/llviewerjointmesh.cpp +++ b/indra/newview/llviewerjointmesh.cpp @@ -108,7 +108,7 @@ void LLViewerJointMesh::uploadJointMatrices()      S32 joint_num;      LLPolyMesh *reference_mesh = mMesh->getReferenceMesh();      LLDrawPool *poolp = mFace ? mFace->getPool() : NULL; -    BOOL hardware_skinning = (poolp && poolp->getShaderLevel() > 0) ? TRUE : FALSE; +    bool hardware_skinning = (poolp && poolp->getShaderLevel() > 0);      //calculate joint matrices      for (joint_num = 0; joint_num < reference_mesh->mJointRenderData.size(); joint_num++) @@ -123,7 +123,7 @@ void LLViewerJointMesh::uploadJointMatrices()          gJointRotUnaligned[joint_num] = joint_mat.getMat3();      } -    BOOL last_pivot_uploaded = FALSE; +    bool last_pivot_uploaded{ false };      S32 j = 0;      //upload joint pivots @@ -144,11 +144,11 @@ void LLViewerJointMesh::uploadJointMatrices()              gJointPivot[j++] = child_pivot; -            last_pivot_uploaded = TRUE; +            last_pivot_uploaded = true;          }          else          { -            last_pivot_uploaded = FALSE; +            last_pivot_uploaded = false;          }      } @@ -216,7 +216,7 @@ int compare_int(const void *a, const void *b)  //--------------------------------------------------------------------  // LLViewerJointMesh::drawShape()  //-------------------------------------------------------------------- -U32 LLViewerJointMesh::drawShape( F32 pixelArea, BOOL first_pass, BOOL is_dummy) +U32 LLViewerJointMesh::drawShape( F32 pixelArea, bool first_pass, bool is_dummy)  {      if (!mValid || !mMesh || !mFace || !mVisible ||          !mFace->getVertexBuffer() || @@ -346,7 +346,7 @@ void LLViewerJointMesh::updateFaceSizes(U32 &num_vertices, U32& num_indices, F32  // updateFaceData()  //----------------------------------------------------------------------------- -void LLViewerJointMesh::updateFaceData(LLFace *face, F32 pixel_area, BOOL damp_wind, bool terse_update) +void LLViewerJointMesh::updateFaceData(LLFace *face, F32 pixel_area, bool damp_wind, bool terse_update)  {      //IF THIS FUNCTION BREAKS, SEE LLPOLYMESH CONSTRUCTOR AND CHECK ALIGNMENT OF INPUT ARRAYS @@ -358,7 +358,7 @@ void LLViewerJointMesh::updateFaceData(LLFace *face, F32 pixel_area, BOOL damp_w      }      LLDrawPool *poolp = mFace->getPool(); -    BOOL hardware_skinning = (poolp && poolp->getShaderLevel() > 0) ? TRUE : FALSE; +    bool hardware_skinning = (poolp && poolp->getShaderLevel() > 0);      if (!hardware_skinning && terse_update)      { //no need to do terse updates if we're doing software vertex skinning @@ -423,7 +423,7 @@ void LLViewerJointMesh::updateFaceData(LLFace *face, F32 pixel_area, BOOL damp_w              const S32 offset = (S32) mMesh->mFaceVertexOffset; -            for (S32 i = 0; i < idx_count; ++i) +            for (U32 i = 0; i < idx_count; ++i)              {                  *(idx++) = *(src_idx++)+offset;              } @@ -436,10 +436,10 @@ void LLViewerJointMesh::updateFaceData(LLFace *face, F32 pixel_area, BOOL damp_w  //-----------------------------------------------------------------------------  // updateLOD()  //----------------------------------------------------------------------------- -BOOL LLViewerJointMesh::updateLOD(F32 pixel_area, BOOL activate) +bool LLViewerJointMesh::updateLOD(F32 pixel_area, bool activate)  { -    BOOL valid = mValid; -    setValid(activate, TRUE); +    bool valid = mValid; +    setValid(activate, true);      return (valid != activate);  }  | 
