Age | Commit message (Collapse) | Author |
|
is paused
|
|
|
|
display is enabled
|
|
|
|
animated objects.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
viewer-local avs used in upload previews
|
|
code cleanup
|
|
|
|
|
|
incrementally. Same dubious formula.
|
|
|
|
it can be fixed.
|
|
|
|
which don't need mesh data.
|
|
LLControlAvatar::initInstance() as a potential hook for optimizations.
|
|
|
|
|
|
|
|
|
|
teleporting to a different simulator. Turns out the control avatar (skeleton) was getting caught up in the cleanup for the original region
|
|
|
|
tris, we don't bother making a control avatar for them.
|
|
|
|
|
|
going static
|
|
|
|
|
|
isAnimatedObject() just uses check against extended mesh flag of the root. On select, LLVOVolume marks whole linkset for update if animated object.
|
|
|
|
|
|
filters for Inventory
|
|
|
|
with recursiveMarkForUpdate
|
|
|
|
must contain some triangles even if not at the root
|
|
|
|
|
|
LLTextureFetchWorker::doWork()
The trouble lines are:
U8 * buffer = (U8 *) ALLOCATE_MEM(LLImageBase::getPrivatePool(), total_size);
if (cur_size > 0)
{
memcpy(buffer, mFormattedImage->getData(), cur_size);
}
If 'cur_size > mHttpReplyOffset + append_size' then 'total_size -= src_offset' will cause
total_size to be smaller than cur_size causing a write access violation on the memcpy.
Since the response is invalid it seemed best to make it follow the other failed partial condition.
(transplanted from 737e28ec6b4d74f3ff915a4effc13d7b615a6a9b)
|
|
|
|
|
|
|
|
|
|
|
|
|