You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When drawing a polygon on top of another polygon with a border, the draw order is sometimes not consistent between the border and the interior. I assume this is caused by internally creating a line feature to draw the border of a polygon. In the attached image, all colors are fully opaque.
The text was updated successfully, but these errors were encountered:
That is the current problem -- we draw all of the interiors, then we draw all of the borders. The last drawn wins. In this case, it will still be more efficient to draw all of the interiors and then all of the borders, since the set up for each (especially borders) is complicated due to all of the possible options. If we map the z-values properly, it will add only a small rendering time penalty (and sometimes by not having to modify the drawing buffer, might actually speed things up), and fix the problem.
When drawing a polygon on top of another polygon with a border, the draw order is sometimes not consistent between the border and the interior. I assume this is caused by internally creating a line feature to draw the border of a polygon. In the attached image, all colors are fully opaque.
The text was updated successfully, but these errors were encountered: