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

Fix issue with optimized away clip segments #2707

Merged
merged 1 commit into from May 1, 2018

Commits on Apr 30, 2018

  1. Fix issue with optimized away clip segments

    When clip segments were optimized away due to having no intersection
    with the outer screen bounds, they were treated as opaque regions. This
    is due to the fact that an Option is not expressive enough to represent
    the three different kinds of distinct destinies of clip segments.
    
    This change replaces the Option with an enum that is either a
    RenderTaskId, Opaque, or Empty to represent a clip segment that should
    not be rendered.
    
    Fixes #2700.
    mrobinson committed Apr 30, 2018
You can’t perform that action at this time.