diff options
author | Ptolemy <ptolemy@lindenlab.com> | 2021-04-13 11:36:33 -0700 |
---|---|---|
committer | Ptolemy <ptolemy@lindenlab.com> | 2021-04-29 14:07:57 -0700 |
commit | eb1e2a231410f8d2fefa4b4903b46b24f4259b04 (patch) | |
tree | d49bf8d436a952f1840379b33b6df1f2e3ad6ab9 | |
parent | 1ef70ff1d3379fd2362f453dedff78c8aeda24ea (diff) |
SL-14113 Cleanup indentation
-rw-r--r-- | indra/newview/lldrawpoolsky.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/newview/lldrawpoolsky.cpp b/indra/newview/lldrawpoolsky.cpp index 77b8a1fc32..178564b0d4 100644 --- a/indra/newview/lldrawpoolsky.cpp +++ b/indra/newview/lldrawpoolsky.cpp @@ -116,17 +116,17 @@ void LLDrawPoolSky::render(S32 pass) void LLDrawPoolSky::renderSkyFace(U8 index) { - LLFace* face = mDrawFace[index]; + LLFace* face = mDrawFace[index]; - if (!face || !face->getGeomCount()) - { - return; - } + if (!face || !face->getGeomCount()) + { + return; + } if (index < LLVOSky::FACE_SUN) // sky tex...interp { llassert(mSkyTex); - mSkyTex[index].bindTexture(true); // bind the current tex + mSkyTex[index].bindTexture(true); // bind the current tex face->renderIndexed(); } |