-
-
Notifications
You must be signed in to change notification settings - Fork 62
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
Comments
I'm still seeing this. Looking through two translucent surfaces produces inconsistent results. Sometimes OK. Sometimes too opaque. Not sure why yet. |
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? |
I think I finally figured out what's going on with translucency depth sorting. 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: 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. |
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.
The text was updated successfully, but these errors were encountered: