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

Trim Gouraud triangles that contain NaN #26767

Merged
merged 1 commit into from
Sep 14, 2023

Commits on Sep 13, 2023

  1. Trim Gouraud triangles that contain NaN

    Agg enters an infinite loop if you give it points that are NaN, due to
    converting the values to fixed-point integers, and then oscillating
    between the large values that result from that conversion.
    
    NaN values may be introduced after transforming the input, so we need to
    trim those after transformation. This matches what is done in normal
    paths.
    QuLogic committed Sep 13, 2023
    Configuration menu
    Copy the full SHA
    1d7f094 View commit details
    Browse the repository at this point in the history