MAINT-6855 Developer > Show Info > Show Render Info is not reporting accurate vertex counts for Selected Objects
parent
183cc7cdfd
commit
0149c4caa9
|
|
@ -7200,7 +7200,9 @@ U32 LLObjectSelection::getSelectedObjectTriangleCount(S32* vcount)
|
|||
|
||||
if (object)
|
||||
{
|
||||
count += object->getTriangleCount(vcount);
|
||||
S32 vt = 0;
|
||||
count += object->getTriangleCount(&vt);
|
||||
*vcount += vt;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue