diff options
author | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
commit | 2a4dea528f670b9bb1f77ef27a8a1dd16603d114 (patch) | |
tree | 95c68e362703c9099d571ecbdc6142b1cda1e005 /linden/indra/newview/llvosurfacepatch.cpp | |
parent | Second Life viewer sources 1.20.6 (diff) | |
download | meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.zip meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.gz meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.bz2 meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.xz |
Second Life viewer sources 1.20.7
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llvosurfacepatch.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/newview/llvosurfacepatch.cpp b/linden/indra/newview/llvosurfacepatch.cpp index c0474f2..310a745 100644 --- a/linden/indra/newview/llvosurfacepatch.cpp +++ b/linden/indra/newview/llvosurfacepatch.cpp | |||
@@ -960,12 +960,12 @@ void LLTerrainPartition::getGeometry(LLSpatialGroup* group) | |||
960 | LLStrider<LLColor4U> colors; | 960 | LLStrider<LLColor4U> colors; |
961 | LLStrider<U16> indices; | 961 | LLStrider<U16> indices; |
962 | 962 | ||
963 | buffer->getVertexStrider(vertices); | 963 | llassert_always(buffer->getVertexStrider(vertices)); |
964 | buffer->getNormalStrider(normals); | 964 | llassert_always(buffer->getNormalStrider(normals)); |
965 | buffer->getTexCoordStrider(texcoords); | 965 | llassert_always(buffer->getTexCoordStrider(texcoords)); |
966 | buffer->getTexCoord2Strider(texcoords2); | 966 | llassert_always(buffer->getTexCoord2Strider(texcoords2)); |
967 | buffer->getColorStrider(colors); | 967 | llassert_always(buffer->getColorStrider(colors)); |
968 | buffer->getIndexStrider(indices); | 968 | llassert_always(buffer->getIndexStrider(indices)); |
969 | 969 | ||
970 | U32 indices_index = 0; | 970 | U32 indices_index = 0; |
971 | U32 index_offset = 0; | 971 | U32 index_offset = 0; |