Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blend mode transparency problems #208

Open
John-Nagle opened this issue Sep 21, 2021 · 8 comments
Open

Blend mode transparency problems #208

John-Nagle opened this issue Sep 21, 2021 · 8 comments
Labels
bug Something isn't working client: animats-viewer Needed for Animats-Viewer module: routines Issues with the render routines

Comments

@John-Nagle
Copy link
Contributor

alphamaskmode
brokenblendmode2
brokenblendmode1

As the point of view changes, textures are replaced, and many change_material requests are made, sometimes objects disappear. This may be associated with thin stacks of faces. See the attached pictures. In alpha mask mode, the window, posters, and backing board are all in the correct order. With blend mode, sometimes some of the posters and the backing board disappear. This is with the same code except for a change to the transparency mode.

@cwfitzgerald cwfitzgerald added bug Something isn't working client: animats-viewer Needed for Animats-Viewer module: routines Issues with the render routines labels Sep 21, 2021
@John-Nagle
Copy link
Contributor Author

Here's some more info and screenshots.
blendfirestorm2
blendfirestorm1
blendproblem

These define the problem a bit better. "blendfirestorm1" shows what the image is supposed to look like, rendered by the Firestorm Second Life viewer. The ashtray has been selected. Note that the ashtray has two triangles on the floor. Those have a baked shadow on translucent triangles.
"blendfirestorm2" shows the same scene, with the glass counter, also with a baked shadow, selected. In both cases, the baked shadows are very close to floor level.

Now compare the Rend3 rendering. There are two big holes in the floor where those translucent shadows were supposed to be. It looks like that the system for resolving whether the floor or the shadow image is on top chose "neither", leaving a hole through which the grass ground plane is visible.

The other cases I've see are also the very close to equal depth case. So that's a good hint as to where to look for trouble.

@John-Nagle
Copy link
Contributor Author

I'm still seeing this. Looking through two translucent surfaces produces inconsistent results. Sometimes OK. Sometimes too opaque. Not sure why yet.

@John-Nagle
Copy link
Contributor Author

backfacecullingoff

Here's a new piece of info. At least for translucent objects, there is no backface culling. This translucent sign has readable text on both sides. In the Second Life viewer, you don't see the back side of the other side of the sign, but with Rend3, you do.

@John-Nagle
Copy link
Contributor Author

firestorm-no-backface-culling-translucednt
Second Life Firestorm viewer, backface culling.

rend3-no-backface-culling-translucednt
Rend3, no backface culling.

With no backface culling, some translucent materials go almost opaque.

@John-Nagle
Copy link
Contributor Author

An extreme example of the wrong face being in front:

outsidewall

Looking through two sets of windows, the most distant one is in front.

insidewall

After moving the camera through the window wall, the distant windows are correct. But looking through two sets of translucent windows sorts wrong.

@cwfitzgerald cwfitzgerald added this to the v0.3.0 milestone Nov 21, 2021
@cwfitzgerald
Copy link
Member

Alright, the backface culling issue has been solved with caceab2. The sort issue is really interesting. Are the windows part of the same object, or are they different objects?

@cwfitzgerald cwfitzgerald removed this from the v0.3.0 milestone Nov 21, 2021
@John-Nagle
Copy link
Contributor Author

This no longer seems to be a bug. Not sure when it got fixed, but I am not seeing it any more.
translucencyfixed

@John-Nagle
Copy link
Contributor Author

John-Nagle commented Jun 11, 2023

I think I finally figured out what's going on with translucency depth sorting.

boardroomcurvedwindow

This is the Firestorm viewer rendering (left) and Rend3 (right) rendering the same scene. The translucent windows are curved, single face, backface culled, and blended. Note the depth sort problem with Rend3,

How does Firestorm get this right when the viewpoint is looking through the same surface twice, once from the front and once from the back? I think it does it by doing the depth sort after doing backface culling. Here's the geometry of the situation:

translucency02

The two big semicircles are the outside and inside of the window. The black areas of those are seen from the front, and would be rendered. The grey areas are back-faces and will be culled. The red and green dots are the "centers" (average of the vertices or some such metric) of the un-culled triangles of each object.

If you first cull the back faces, then use only the remaining vertices to determine depth for the depth sort, translucent objects which wrap around other objects work out better, because invisible back sides no longer affect the depth sort.

This is not high priority but explains a nagging problem. If it can be fixed at low cost, it's worth fixing at some point.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working client: animats-viewer Needed for Animats-Viewer module: routines Issues with the render routines
Projects
None yet
Development

No branches or pull requests

2 participants