aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llvosurfacepatch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llvosurfacepatch.cpp')
-rw-r--r--linden/indra/newview/llvosurfacepatch.cpp12
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;