Jump to content

What servers tell viewers about objects - missing objects and materials.


You are about to reply to a thread that has been inactive for 760 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

This is rather technical, mostly for viewer devs and Lindens.

As I've mentioned, I'm writing a renderer/viewer for SL in Rust. It's not based on LL code, so it has completely different bugs. Right now, it's split into two programs. One runs and connects to an SL sim, gets a list of the objects and materials, and puts that in a file. That program sends the same messages as the Python sample presence program provided by Linden Lab. The second program works like a viewer, displaying everything. It talks to the asset servers and uses the object list from the first program. It only shows static objects, not avatars. This is a test mode for repeatable testing.

Sometimes a few objects don't show up. In Port Babbage, there are two specific objects that, sometimes, the sim doesn't seem to tell the viewer about. One is the facade of the Tower Club, and the other is a clock inside the Lox building. Strangely, I've seen those two specific objects appear or not appear, weeks apart. My question for TPV developers is whether they ever see this problem.

The AgentUpdate message I send to the sim has a camera location of <0,0,0>, a look direction of <1, 1,0> normalized, and a "far" value of 443 meters, more than enough for the entire sim. The agent never moves. After login, the sim starts sending ObjectUpdate messages to tell the viewer about all the objects in the sim. The sim reports all objects except for those two objects, and some of the time, I get ObjectUpdate messages even for them. Rerunning the client program a few times usually fixes the problem.

I wait three minutes for all the object updates to show up, but they all come in well before then.

On a related note, I also try to get all the materials for the sim in bulk by querying the material capability with no UUID specified. When I do this, I get almost all the materials. For Port Babbage, I get about 1500 materials, but 44 are missing. This is not serious; I can get the missing ones one at a time. The ObjectUpdate message gives the material UUID, and if it didn't come in in bulk, it can be requested later.  But it's curious that it happens. (Bulk material retrieval is an SL-only feature, by the way. Open Simulator does not support this. Open Simulator is often run on people's home servers, and they try to avoid bulk data transfers over low-bandwidth home uplinks.)

At the asset server level, I get occasional HTTP 404 errors fetching textures. Not many. But there seem to be texture UUIDs the server knows about that the asset servers do not. You can see similar events in Firestorm logs, so I don't think that's something I'm doing.

I need to add more diagnostic features to pin this down, but right now I'm asking if other viewer devs see these sorts of things in their viewers. Am I doing something wrong, or are these obscure server-side bugs?

Link to comment
Share on other sites

3 hours ago, animats said:

Sometimes a few objects don't show up. In Port Babbage, there are two specific objects that, sometimes, the sim doesn't seem to tell the viewer about. One is the facade of the Tower Club, and the other is a clock inside the Lox building.

Do you have positions and UUIDs or names for these objects ?  I could have a look at them...

3 hours ago, animats said:

The AgentUpdate message I send to the sim has a camera location of <0,0,0>, a look direction of <1, 1,0> normalized, and a ”far” value of 443 meters, more than enough for the entire sim. The agent never moves. After login, the sim starts sending ObjectUpdate messages to tell the viewer about all the objects in the sim. The sim reports all objects except for those two objects, and some of the time, I get ObjectUpdate messages even for them.

It looks like a server side bug in the interest list (it won't be the first): did you try to artificially change the avatar position and FOV (e.g. by alternating its position to the 4 sims corners and with a FOV still pointing to the sim center) ?

Also, you could try and use the 360° interest list mode, just in case... Have a look at the Cool VL Viewer code (it does not implement the 360° snapshot feature but may be set to use that special interest list mode). The relevant code is in indra/newview/llviewerregion.cpp (see LLViewerRegion::setInterestListMode() and the ”Use360InterestList” debug variable usage).

3 hours ago, animats said:

At the asset server level, I get occasional HTTP 404 errors fetching textures. Not many. But there seem to be texture UUIDs the server knows about that the asset servers do not. You can see similar events in Firestorm logs, so I don't think that's something I'm doing.

Perhaps a CDN issue... The Lindens in charge for the servers might have some more useful clues. But yes, I do see those pretty often too, in my logs (I setup my viewer so that it displays on exit in an Xdialog window all the warnings it logged during the session)... This said, the 404s in question do not ”translate” into grey (missing) textures on my screen (or at least, I do not notice them: perhaps on too small or hidden objects ?)...

3 hours ago, animats said:

Am I doing something wrong, or are these obscure server-side bugs?

I would personally be inclined to think they are server bugs... 😜

Edited by Henri Beauchamp
Link to comment
Share on other sites

3 minutes ago, Henri Beauchamp said:

Do you have positions and UUIDs or names for these objects ?  I could have a look at them...

  • Wroclaw Tower Dark. near Port Babbage 60/181/106
  • Nautilus Sundial Clock, near Port Babbage 230/200/111

In both cases, I don't get the entire linkset. I'm not missing just one prim.  (The way my system works, if the root prim isn't reported, the others are orphaned, stuck in an orphan list waiting for the parent to show up, and I haven't been looking at the final orphans list. Something to check.)

9 minutes ago, Henri Beauchamp said:

It looks like a server side bug in the interest list (it won't be the first): did you try to artificially change the avatar position and FOV (e.g. by alternating its position to the 4 sims corners and with a FOV still pointing to the sim center) ?

I don't move the avatar, which is probably why these bugs don't self-correct as the avatar gets closer to the object of interest and the interest list is re-generated. For test purposes, the avatar stays still and I just cam around. I need to try some different avatar positions.

12 minutes ago, Henri Beauchamp said:

"I get occasional HTTP 404 errors fetching textures."

On the 404 errors, I'm going to put in something so those show up with striped "asset not found" warning textures so I can see this problem visually. I don't have good visual debugging tools yet, just gigabytes of text log files.

A new implementation for a network client usually means finding strangeness in the protocol. So this isn't too surprising.

Thanks.

Link to comment
Share on other sites

1 hour ago, animats said:
  • Wroclaw Tower Dark. near Port Babbage 60/181/106
  • Nautilus Sundial Clock, near Port Babbage 230/200/111

Seeing them just fine (I tried many view angles, after TPs, after relog, zoomed in from afar, etc). Here, just after a relog in each place:

Tower.thumb.jpg.eb7f5e530103bf386c7c7d6a536db1c7.jpg

Clock.thumb.jpg.db52f9777776b39f92521b01082b0e6b.jpg

 

They are meshes, however, so maybe their geometry does not play well with your renderer (the SL viewer uses a mesh optimization step after the mesh object download and before using the optimized result for rendering).

 

I got quite a few warnings, and (almost (*) )only about ”missing” textures (although not seen missing on my screen), maybe you can compare with yours:

2022-09-03 23:26:09Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 2f2fbcd1-7252-9d1c-a1b1-29ce8b69162d CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:09Z WARNING: LLTextureFetchWorker::doWork: Texture 2f2fbcd1-7252-9d1c-a1b1-29ce8b69162d: failed harder
2022-09-03 23:26:09Z WARNING: LLViewerTexture::updateFetch: No data received for image 2f2fbcd1-7252-9d1c-a1b1-29ce8b69162d, setting as missing. decode_priority = 4.70114e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:09Z WARNING: LLViewerTexture::setIsMissingAsset: 2f2fbcd1-7252-9d1c-a1b1-29ce8b69162d: Marking image as missing
2022-09-03 23:26:09Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 0bbd5dd6-59de-eda0-0c5c-9320d248da45 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:09Z WARNING: LLTextureFetchWorker::doWork: Texture 0bbd5dd6-59de-eda0-0c5c-9320d248da45: failed harder
2022-09-03 23:26:09Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 3370edc7-e679-3073-cd2e-8f1daa2b2480 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:09Z WARNING: LLTextureFetchWorker::doWork: Texture 3370edc7-e679-3073-cd2e-8f1daa2b2480: failed harder
2022-09-03 23:26:09Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 3903b455-3680-fe2e-dd54-f0e3a7916d12 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:09Z WARNING: LLTextureFetchWorker::doWork: Texture 3903b455-3680-fe2e-dd54-f0e3a7916d12: failed harder
2022-09-03 23:26:09Z WARNING: LLViewerTexture::updateFetch: No data received for image 0bbd5dd6-59de-eda0-0c5c-9320d248da45, setting as missing. decode_priority = 2.30001e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:09Z WARNING: LLViewerTexture::setIsMissingAsset: 0bbd5dd6-59de-eda0-0c5c-9320d248da45: Marking image as missing
2022-09-03 23:26:09Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 316cba93-86d2-d373-eed4-cf885e200697 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:09Z WARNING: LLTextureFetchWorker::doWork: Texture 316cba93-86d2-d373-eed4-cf885e200697: failed harder
2022-09-03 23:26:09Z WARNING: LLViewerTexture::updateFetch: No data received for image 316cba93-86d2-d373-eed4-cf885e200697, setting as missing. decode_priority = 2.94002e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:09Z WARNING: LLViewerTexture::setIsMissingAsset: 316cba93-86d2-d373-eed4-cf885e200697: Marking image as missing
2022-09-03 23:26:09Z WARNING: LLViewerTexture::updateFetch: No data received for image 3370edc7-e679-3073-cd2e-8f1daa2b2480, setting as missing. decode_priority = 2.20001e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:09Z WARNING: LLViewerTexture::setIsMissingAsset: 3370edc7-e679-3073-cd2e-8f1daa2b2480: Marking image as missing
2022-09-03 23:26:09Z WARNING: LLViewerTexture::updateFetch: No data received for image 3903b455-3680-fe2e-dd54-f0e3a7916d12, setting as missing. decode_priority = 2.94106e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:09Z WARNING: LLViewerTexture::setIsMissingAsset: 3903b455-3680-fe2e-dd54-f0e3a7916d12: Marking image as missing
2022-09-03 23:26:10Z WARNING: LLTextureFetchWorker::onCompleted: Texture: a32445d8-2a25-c8d5-5bd6-3c5fa18efaa8 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:10Z WARNING: LLTextureFetchWorker::doWork: Texture a32445d8-2a25-c8d5-5bd6-3c5fa18efaa8: failed harder
2022-09-03 23:26:10Z WARNING: LLViewerTexture::updateFetch: No data received for image a32445d8-2a25-c8d5-5bd6-3c5fa18efaa8, setting as missing. decode_priority = 4.70103e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:10Z WARNING: LLViewerTexture::setIsMissingAsset: a32445d8-2a25-c8d5-5bd6-3c5fa18efaa8: Marking image as missing
2022-09-03 23:26:11Z WARNING: LLTextureFetchWorker::onCompleted: Texture: b4371fa1-c6f4-ba63-0649-23c4037b7b5e CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:11Z WARNING: LLTextureFetchWorker::doWork: Texture b4371fa1-c6f4-ba63-0649-23c4037b7b5e: failed harder
2022-09-03 23:26:11Z WARNING: LLTextureFetchWorker::onCompleted: Texture: a0843b7d-d1d3-d155-9269-cfdc3329f248 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:11Z WARNING: LLTextureFetchWorker::doWork: Texture a0843b7d-d1d3-d155-9269-cfdc3329f248: failed harder
2022-09-03 23:26:11Z WARNING: LLTextureFetchWorker::onCompleted: Texture: c406cd00-07cc-0f45-78f3-9761d6cbc5c9 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:11Z WARNING: LLTextureFetchWorker::doWork: Texture c406cd00-07cc-0f45-78f3-9761d6cbc5c9: failed harder
2022-09-03 23:26:11Z WARNING: LLTextureFetchWorker::onCompleted: Texture: cb61b9ad-fcd5-26ee-f4f0-5f88975193e0 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:11Z WARNING: LLTextureFetchWorker::doWork: Texture cb61b9ad-fcd5-26ee-f4f0-5f88975193e0: failed harder
2022-09-03 23:26:11Z WARNING: LLViewerTexture::updateFetch: No data received for image b4371fa1-c6f4-ba63-0649-23c4037b7b5e, setting as missing. decode_priority = 4.70112e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:11Z WARNING: LLViewerTexture::setIsMissingAsset: b4371fa1-c6f4-ba63-0649-23c4037b7b5e: Marking image as missing
2022-09-03 23:26:11Z WARNING: LLViewerTexture::updateFetch: No data received for image a0843b7d-d1d3-d155-9269-cfdc3329f248, setting as missing. decode_priority = 2.78001e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:11Z WARNING: LLViewerTexture::setIsMissingAsset: a0843b7d-d1d3-d155-9269-cfdc3329f248: Marking image as missing
2022-09-03 23:26:12Z WARNING: LLViewerTexture::updateFetch: No data received for image c406cd00-07cc-0f45-78f3-9761d6cbc5c9, setting as missing. decode_priority = 2.20101e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:12Z WARNING: LLViewerTexture::setIsMissingAsset: c406cd00-07cc-0f45-78f3-9761d6cbc5c9: Marking image as missing
2022-09-03 23:26:12Z WARNING: LLViewerTexture::updateFetch: No data received for image cb61b9ad-fcd5-26ee-f4f0-5f88975193e0, setting as missing. decode_priority = 2.30003e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:12Z WARNING: LLViewerTexture::setIsMissingAsset: cb61b9ad-fcd5-26ee-f4f0-5f88975193e0: Marking image as missing
2022-09-03 23:26:12Z WARNING: LLTextureFetchWorker::onCompleted: Texture: f2e106f0-e08c-4fb5-d743-22bbda2a95f7 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:12Z WARNING: LLTextureFetchWorker::doWork: Texture f2e106f0-e08c-4fb5-d743-22bbda2a95f7: failed harder
2022-09-03 23:26:12Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 293ba958-16bb-82e9-c971-eb8fb06e231d CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:12Z WARNING: LLTextureFetchWorker::doWork: Texture 293ba958-16bb-82e9-c971-eb8fb06e231d: failed harder
2022-09-03 23:26:12Z WARNING: LLViewerTexture::updateFetch: No data received for image f2e106f0-e08c-4fb5-d743-22bbda2a95f7, setting as missing. decode_priority = 2.30109e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:12Z WARNING: LLViewerTexture::setIsMissingAsset: f2e106f0-e08c-4fb5-d743-22bbda2a95f7: Marking image as missing
2022-09-03 23:26:12Z WARNING: LLViewerTexture::updateFetch: No data received for image 293ba958-16bb-82e9-c971-eb8fb06e231d, setting as missing. decode_priority = 2.30013e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:12Z WARNING: LLViewerTexture::setIsMissingAsset: 293ba958-16bb-82e9-c971-eb8fb06e231d: Marking image as missing
2022-09-03 23:26:13Z WARNING: LLVolume::generate: ONCE: Path with non-finite points. Resetting offset to 0.
2022-09-03 23:26:14Z WARNING: LLTextureFetchWorker::onCompleted: Texture: bf488d08-8ded-bf58-4202-0a77b29af4f7 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:14Z WARNING: LLTextureFetchWorker::doWork: Texture bf488d08-8ded-bf58-4202-0a77b29af4f7: failed harder
2022-09-03 23:26:14Z WARNING: LLViewerTexture::updateFetch: No data received for image bf488d08-8ded-bf58-4202-0a77b29af4f7, setting as missing. decode_priority = 2.30004e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:14Z WARNING: LLViewerTexture::setIsMissingAsset: bf488d08-8ded-bf58-4202-0a77b29af4f7: Marking image as missing
2022-09-03 23:26:16Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 70b1e15b-86f8-a0d8-4dee-cdb8b8231137 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:16Z WARNING: LLTextureFetchWorker::doWork: Texture 70b1e15b-86f8-a0d8-4dee-cdb8b8231137: failed harder
2022-09-03 23:26:16Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 7d807171-64bc-c947-f41e-ab67139d8065 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:26:16Z WARNING: LLTextureFetchWorker::doWork: Texture 7d807171-64bc-c947-f41e-ab67139d8065: failed harder
2022-09-03 23:26:16Z WARNING: LLViewerTexture::updateFetch: No data received for image 70b1e15b-86f8-a0d8-4dee-cdb8b8231137, setting as missing. decode_priority = 2.30102e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:16Z WARNING: LLViewerTexture::setIsMissingAsset: 70b1e15b-86f8-a0d8-4dee-cdb8b8231137: Marking image as missing
2022-09-03 23:26:16Z WARNING: LLViewerTexture::updateFetch: No data received for image 7d807171-64bc-c947-f41e-ab67139d8065, setting as missing. decode_priority = 2.30001e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:26:16Z WARNING: LLViewerTexture::setIsMissingAsset: 7d807171-64bc-c947-f41e-ab67139d8065: Marking image as missing
2022-09-03 23:27:18Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 02db1014-6fbb-5cd0-dd3b-21f257d7f976 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:18Z WARNING: LLTextureFetchWorker::doWork: Texture 02db1014-6fbb-5cd0-dd3b-21f257d7f976: failed harder
2022-09-03 23:27:18Z WARNING: LLViewerTexture::updateFetch: No data received for image 02db1014-6fbb-5cd0-dd3b-21f257d7f976, setting as missing. decode_priority = 2.30001e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:18Z WARNING: LLViewerTexture::setIsMissingAsset: 02db1014-6fbb-5cd0-dd3b-21f257d7f976: Marking image as missing
2022-09-03 23:27:34Z WARNING: LLTextureFetchWorker::onCompleted: Texture: afd42dad-651c-fe93-ec11-6c280be914d1 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:34Z WARNING: LLTextureFetchWorker::doWork: Texture afd42dad-651c-fe93-ec11-6c280be914d1: failed harder
2022-09-03 23:27:35Z WARNING: LLViewerTexture::updateFetch: No data received for image afd42dad-651c-fe93-ec11-6c280be914d1, setting as missing. decode_priority = 2.30105e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:35Z WARNING: LLViewerTexture::setIsMissingAsset: afd42dad-651c-fe93-ec11-6c280be914d1: Marking image as missing
2022-09-03 23:27:35Z WARNING: LLTextureFetchWorker::onCompleted: Texture: b9777264-1aca-e299-02a1-80fb71c88286 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:35Z WARNING: LLTextureFetchWorker::doWork: Texture b9777264-1aca-e299-02a1-80fb71c88286: failed harder
2022-09-03 23:27:35Z WARNING: LLViewerTexture::updateFetch: No data received for image b9777264-1aca-e299-02a1-80fb71c88286, setting as missing. decode_priority = 2.30106e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:35Z WARNING: LLViewerTexture::setIsMissingAsset: b9777264-1aca-e299-02a1-80fb71c88286: Marking image as missing
2022-09-03 23:27:38Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 043e6822-90b1-ae8f-6deb-3aafe3d56e6d CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:38Z WARNING: LLTextureFetchWorker::doWork: Texture 043e6822-90b1-ae8f-6deb-3aafe3d56e6d: failed harder
2022-09-03 23:27:38Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 0a31f817-0e5a-b555-5d34-caa35d7bbacd CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:38Z WARNING: LLTextureFetchWorker::doWork: Texture 0a31f817-0e5a-b555-5d34-caa35d7bbacd: failed harder
2022-09-03 23:27:38Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 15510a9c-0f3d-2969-d7a9-4d7faa9fd4a0 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:38Z WARNING: LLTextureFetchWorker::doWork: Texture 15510a9c-0f3d-2969-d7a9-4d7faa9fd4a0: failed harder
2022-09-03 23:27:39Z WARNING: LLViewerTexture::updateFetch: No data received for image 043e6822-90b1-ae8f-6deb-3aafe3d56e6d, setting as missing. decode_priority = 2.30002e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:39Z WARNING: LLViewerTexture::setIsMissingAsset: 043e6822-90b1-ae8f-6deb-3aafe3d56e6d: Marking image as missing
2022-09-03 23:27:39Z WARNING: LLViewerTexture::updateFetch: No data received for image 0a31f817-0e5a-b555-5d34-caa35d7bbacd, setting as missing. decode_priority = 2.30105e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:39Z WARNING: LLViewerTexture::setIsMissingAsset: 0a31f817-0e5a-b555-5d34-caa35d7bbacd: Marking image as missing
2022-09-03 23:27:39Z WARNING: LLViewerTexture::updateFetch: No data received for image 15510a9c-0f3d-2969-d7a9-4d7faa9fd4a0, setting as missing. decode_priority = 2.30001e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:39Z WARNING: LLViewerTexture::setIsMissingAsset: 15510a9c-0f3d-2969-d7a9-4d7faa9fd4a0: Marking image as missing
2022-09-03 23:27:40Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 39ead52a-fc9a-7deb-381b-593878831e86 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:40Z WARNING: LLTextureFetchWorker::doWork: Texture 39ead52a-fc9a-7deb-381b-593878831e86: failed harder
2022-09-03 23:27:40Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 42fc6824-62bc-c90e-92df-549043eec7cf CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:40Z WARNING: LLTextureFetchWorker::doWork: Texture 42fc6824-62bc-c90e-92df-549043eec7cf: failed harder
2022-09-03 23:27:41Z WARNING: LLViewerTexture::updateFetch: No data received for image 39ead52a-fc9a-7deb-381b-593878831e86, setting as missing. decode_priority = 2.30101e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:41Z WARNING: LLViewerTexture::setIsMissingAsset: 39ead52a-fc9a-7deb-381b-593878831e86: Marking image as missing
2022-09-03 23:27:41Z WARNING: LLViewerTexture::updateFetch: No data received for image 42fc6824-62bc-c90e-92df-549043eec7cf, setting as missing. decode_priority = 2.30106e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:41Z WARNING: LLViewerTexture::setIsMissingAsset: 42fc6824-62bc-c90e-92df-549043eec7cf: Marking image as missing
2022-09-03 23:27:41Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 5776983b-cb3f-00bd-cfd6-99b3b970f82f CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:41Z WARNING: LLTextureFetchWorker::doWork: Texture 5776983b-cb3f-00bd-cfd6-99b3b970f82f: failed harder
2022-09-03 23:27:41Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 5ca0fb1a-4531-e36e-c414-c360fe7f4b8d CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:41Z WARNING: LLTextureFetchWorker::doWork: Texture 5ca0fb1a-4531-e36e-c414-c360fe7f4b8d: failed harder
2022-09-03 23:27:42Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 64f90058-89c2-db65-6d70-4b3bdffa600f CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:42Z WARNING: LLTextureFetchWorker::doWork: Texture 64f90058-89c2-db65-6d70-4b3bdffa600f: failed harder
2022-09-03 23:27:46Z WARNING: LLViewerTexture::updateFetch: No data received for image 5776983b-cb3f-00bd-cfd6-99b3b970f82f, setting as missing. decode_priority = 2.30003e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:46Z WARNING: LLViewerTexture::setIsMissingAsset: 5776983b-cb3f-00bd-cfd6-99b3b970f82f: Marking image as missing
2022-09-03 23:27:46Z WARNING: LLViewerTexture::updateFetch: No data received for image 5ca0fb1a-4531-e36e-c414-c360fe7f4b8d, setting as missing. decode_priority = 2.30102e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:46Z WARNING: LLViewerTexture::setIsMissingAsset: 5ca0fb1a-4531-e36e-c414-c360fe7f4b8d: Marking image as missing
2022-09-03 23:27:46Z WARNING: LLViewerTexture::updateFetch: No data received for image 64f90058-89c2-db65-6d70-4b3bdffa600f, setting as missing. decode_priority = 2.30102e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:46Z WARNING: LLViewerTexture::setIsMissingAsset: 64f90058-89c2-db65-6d70-4b3bdffa600f: Marking image as missing
2022-09-03 23:27:46Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 85f541f5-bb32-3a35-9453-95558c8c4d7a CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:46Z WARNING: LLTextureFetchWorker::doWork: Texture 85f541f5-bb32-3a35-9453-95558c8c4d7a: failed harder
2022-09-03 23:27:47Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 98ad383e-5bdb-c523-03a0-6619e3c36bfa CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:47Z WARNING: LLTextureFetchWorker::doWork: Texture 98ad383e-5bdb-c523-03a0-6619e3c36bfa: failed harder
2022-09-03 23:27:47Z WARNING: LLTextureFetchWorker::onCompleted: Texture: b448f689-96aa-c707-9c71-d3c72ad92206 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:47Z WARNING: LLTextureFetchWorker::doWork: Texture b448f689-96aa-c707-9c71-d3c72ad92206: failed harder
2022-09-03 23:27:47Z WARNING: LLViewerTexture::updateFetch: No data received for image 85f541f5-bb32-3a35-9453-95558c8c4d7a, setting as missing. decode_priority = 2.3011e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:47Z WARNING: LLViewerTexture::setIsMissingAsset: 85f541f5-bb32-3a35-9453-95558c8c4d7a: Marking image as missing
2022-09-03 23:27:48Z WARNING: LLViewerTexture::updateFetch: No data received for image 98ad383e-5bdb-c523-03a0-6619e3c36bfa, setting as missing. decode_priority = 2.30103e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:48Z WARNING: LLViewerTexture::setIsMissingAsset: 98ad383e-5bdb-c523-03a0-6619e3c36bfa: Marking image as missing
2022-09-03 23:27:48Z WARNING: LLViewerTexture::updateFetch: No data received for image b448f689-96aa-c707-9c71-d3c72ad92206, setting as missing. decode_priority = 2.30004e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:48Z WARNING: LLViewerTexture::setIsMissingAsset: b448f689-96aa-c707-9c71-d3c72ad92206: Marking image as missing
2022-09-03 23:27:48Z WARNING: LLTextureFetchWorker::onCompleted: Texture: d731dbf0-1f39-9d83-d894-279315bea3be CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:48Z WARNING: LLTextureFetchWorker::doWork: Texture d731dbf0-1f39-9d83-d894-279315bea3be: failed harder
2022-09-03 23:27:49Z WARNING: LLViewerTexture::updateFetch: No data received for image d731dbf0-1f39-9d83-d894-279315bea3be, setting as missing. decode_priority = 2.30003e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:49Z WARNING: LLViewerTexture::setIsMissingAsset: d731dbf0-1f39-9d83-d894-279315bea3be: Marking image as missing
2022-09-03 23:27:50Z WARNING: LLTextureFetchWorker::onCompleted: Texture: fddcb278-3dc1-3b4c-7002-93c26fc90f4c CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:50Z WARNING: LLTextureFetchWorker::doWork: Texture fddcb278-3dc1-3b4c-7002-93c26fc90f4c: failed harder
2022-09-03 23:27:50Z WARNING: LLViewerTexture::updateFetch: No data received for image fddcb278-3dc1-3b4c-7002-93c26fc90f4c, setting as missing. decode_priority = 2.30001e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:50Z WARNING: LLViewerTexture::setIsMissingAsset: fddcb278-3dc1-3b4c-7002-93c26fc90f4c: Marking image as missing
2022-09-03 23:27:51Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 0dc2c4e7-0cea-8141-ff72-79c62098fca7 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:27:51Z WARNING: LLTextureFetchWorker::doWork: Texture 0dc2c4e7-0cea-8141-ff72-79c62098fca7: failed harder
2022-09-03 23:27:51Z WARNING: LLViewerTexture::updateFetch: No data received for image 0dc2c4e7-0cea-8141-ff72-79c62098fca7, setting as missing. decode_priority = 2.30001e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:27:51Z WARNING: LLViewerTexture::setIsMissingAsset: 0dc2c4e7-0cea-8141-ff72-79c62098fca7: Marking image as missing
2022-09-03 23:28:03Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 69f9f2c7-e84e-9a3e-a63e-b0b7058d97ce CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:28:03Z WARNING: LLTextureFetchWorker::doWork: Texture 69f9f2c7-e84e-9a3e-a63e-b0b7058d97ce: failed harder
2022-09-03 23:28:06Z WARNING: LLViewerTexture::updateFetch: No data received for image 69f9f2c7-e84e-9a3e-a63e-b0b7058d97ce, setting as missing. decode_priority = 2.20001e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:28:06Z WARNING: LLViewerTexture::setIsMissingAsset: 69f9f2c7-e84e-9a3e-a63e-b0b7058d97ce: Marking image as missing
2022-09-03 23:28:07Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 9c28f9d0-b8d2-b108-4b0c-9940499f88f1 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:28:07Z WARNING: LLTextureFetchWorker::doWork: Texture 9c28f9d0-b8d2-b108-4b0c-9940499f88f1: failed harder
2022-09-03 23:28:07Z WARNING: LLViewerTexture::updateFetch: No data received for image 9c28f9d0-b8d2-b108-4b0c-9940499f88f1, setting as missing. decode_priority = 2.30013e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:28:07Z WARNING: LLViewerTexture::setIsMissingAsset: 9c28f9d0-b8d2-b108-4b0c-9940499f88f1: Marking image as missing
2022-09-03 23:28:08Z WARNING: LLTextureFetchWorker::onCompleted: Texture: d07a09d1-012f-231c-62f0-818f9e95f5aa CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:28:08Z WARNING: LLTextureFetchWorker::doWork: Texture d07a09d1-012f-231c-62f0-818f9e95f5aa: failed harder
2022-09-03 23:28:08Z WARNING: LLViewerTexture::updateFetch: No data received for image d07a09d1-012f-231c-62f0-818f9e95f5aa, setting as missing. decode_priority = 2.30102e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:28:08Z WARNING: LLViewerTexture::setIsMissingAsset: d07a09d1-012f-231c-62f0-818f9e95f5aa: Marking image as missing
2022-09-03 23:28:09Z WARNING: LLTextureFetchWorker::onCompleted: Texture: ea73cf62-deb5-07c0-002f-eb352bb3ee46 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:28:09Z WARNING: LLTextureFetchWorker::doWork: Texture ea73cf62-deb5-07c0-002f-eb352bb3ee46: failed harder
2022-09-03 23:28:10Z WARNING: LLViewerTexture::updateFetch: No data received for image ea73cf62-deb5-07c0-002f-eb352bb3ee46, setting as missing. decode_priority = 2.30101e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:28:10Z WARNING: LLViewerTexture::setIsMissingAsset: ea73cf62-deb5-07c0-002f-eb352bb3ee46: Marking image as missing
2022-09-03 23:28:11Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 14ea03b2-5992-9834-9a3d-d433c9fed688 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:28:11Z WARNING: LLTextureFetchWorker::doWork: Texture 14ea03b2-5992-9834-9a3d-d433c9fed688: failed harder
2022-09-03 23:28:11Z WARNING: LLViewerTexture::updateFetch: No data received for image 14ea03b2-5992-9834-9a3d-d433c9fed688, setting as missing. decode_priority = 2.30001e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:28:11Z WARNING: LLViewerTexture::setIsMissingAsset: 14ea03b2-5992-9834-9a3d-d433c9fed688: Marking image as missing
2022-09-03 23:28:11Z WARNING: LLTextureFetchWorker::onCompleted: Texture: 2ae0e6ba-b380-9b6a-6843-3e2fbfd6be93 CURL GET FAILED, status: Http_404 - reason: Not Found
2022-09-03 23:28:11Z WARNING: LLTextureFetchWorker::doWork: Texture 2ae0e6ba-b380-9b6a-6843-3e2fbfd6be93: failed harder
2022-09-03 23:28:11Z WARNING: LLViewerTexture::updateFetch: No data received for image 2ae0e6ba-b380-9b6a-6843-3e2fbfd6be93, setting as missing. decode_priority = 2.30102e+06 - mRawDiscardLevel = 32767 - current_discard = -1
2022-09-03 23:28:11Z WARNING: LLViewerTexture::setIsMissingAsset: 2ae0e6ba-b380-9b6a-6843-3e2fbfd6be93: Marking image as missing

(*) This warning:

LLVolume::generate: ONCE: Path with non-finite points. Resetting offset to 0.

would betray a bogus object geometry...

Edited by Henri Beauchamp
Link to comment
Share on other sites

loxbldgmissingobjs.thumb.png.5f020e87abd4a2ccec61679af9dfee14.png

I'm missing other objects in that corner, and elsewhere in the Lox building.  Compare with the picture above. Engine room telegraph, brass object on sechod shelf, case enclosing sphere at center-left, and clock are missing.

Only in the Lox building, though. Not in the park behind it. Not in the building next door. Not elsewhere in the region.

When I rerun this, some of the missing objects on the shelves at the left show up.

I need to do further testing. I'm asking for the interest list while at <0,0,0>, which is underground. That might not work right.

Edited by animats
Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 760 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...