diff options
author | Oz Linden <oz@lindenlab.com> | 2017-11-29 11:31:08 -0800 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2017-11-29 11:31:08 -0800 |
commit | a12e282cd473d5b7fc3e23fdd8fdfed11cc88864 (patch) | |
tree | cf07df2ae2219009bdc8337f4f9b4f1247fbd65d /indra/newview/llfloaterimagepreview.cpp | |
parent | 28f3b032076929bf595c34ab10666930c7ea1464 (diff) | |
parent | 1693ccba58eef676df1f91e50627545ac35bb819 (diff) |
merge changes for 5.0.9-release
Diffstat (limited to 'indra/newview/llfloaterimagepreview.cpp')
-rw-r--r-- | indra/newview/llfloaterimagepreview.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llfloaterimagepreview.cpp b/indra/newview/llfloaterimagepreview.cpp index 52e678ce24..a9e4d752ac 100644 --- a/indra/newview/llfloaterimagepreview.cpp +++ b/indra/newview/llfloaterimagepreview.cpp @@ -801,7 +801,13 @@ void LLImagePreviewSculpted::setPreviewTarget(LLImageRaw* imagep, F32 distance) U32 num_vertices = vf.mNumVertices; mVertexBuffer = new LLVertexBuffer(LLVertexBuffer::MAP_VERTEX | LLVertexBuffer::MAP_NORMAL | LLVertexBuffer::MAP_TEXCOORD0, 0); - mVertexBuffer->allocateBuffer(num_vertices, num_indices, TRUE); + if (!mVertexBuffer->allocateBuffer(num_vertices, num_indices, TRUE)) + { + LL_WARNS() << "Failed to allocate Vertex Buffer for image preview to" + << num_vertices << " vertices and " + << num_indices << " indices" << LL_ENDL; + // We are likely to crash on getTexCoord0Strider() + } LLStrider<LLVector3> vertex_strider; LLStrider<LLVector3> normal_strider; |