Skip to content
Snippets Groups Projects
Commit 07f9e903 authored by Karl Stiefvater (qarl)'s avatar Karl Stiefvater (qarl)
Browse files

EXT-4388 Crash in octree line segment intersection code (getMask)

parent d8ea11e1
No related branches found
No related tags found
No related merge requests found
......@@ -1748,7 +1748,8 @@ BOOL LLImageGL::getMask(const LLVector2 &tc)
{
LL_WARNS_ONCE("render") << "Ugh, non-finite u/v in mask pick" << LL_ENDL;
u = v = 0.f;
llassert(false);
// removing assert per EXT-4388
// llassert(false);
}
if (LL_UNLIKELY(u < 0.f || u > 1.f ||
......@@ -1756,7 +1757,8 @@ BOOL LLImageGL::getMask(const LLVector2 &tc)
{
LL_WARNS_ONCE("render") << "Ugh, u/v out of range in image mask pick" << LL_ENDL;
u = v = 0.f;
llassert(false);
// removing assert per EXT-4388
// llassert(false);
}
S32 x = llfloor(u * mPickMaskWidth);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment