Bug 98846 - triangle clipping causes wrong vertex's attribute to be broadcasted for flat interpolation
Summary: triangle clipping causes wrong vertex's attribute to be broadcasted for flat ...
Status: RESOLVED MOVED
Alias: None
Product: Mesa
Classification: Unclassified
Component: Drivers/Gallium/swr (show other bugs)
Version: git
Hardware: Other All
: medium normal
Assignee: mesa-dev
QA Contact: mesa-dev
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-11-24 20:08 UTC by Ilia Mirkin
Modified: 2019-09-18 18:24 UTC (History)
1 user (show)

See Also:
i915 platform:
i915 features:


Attachments

Description Ilia Mirkin 2016-11-24 20:08:52 UTC
See example at generated_tests/spec/glsl-1.10/execution/interpolation/interpolation-none-gl_FrontColor-flat-fixed.shader_test

This sets a position s.t. the clipping at +/-1 takes effect. And it works just fine - the clipped result is correct. However the color output is green instead of blue - the first vertex's color is broadcast to the new triangles rather than the last vertex's color.

I traced through the code a bit, and it seems to *want* to do the right thing, but for some reason doesn't. Smooth shading works fine in this clipping scenario.

With user-provided clip planes (or distances), i.e. in where the clipping stage does nothing, the color is picked correctly.
Comment 1 Ilia Mirkin 2016-11-25 06:51:37 UTC
Actually I tracked it down to this little bit in clip.h:

    void ClipSimd(const simdscalar& vPrimMask, const simdscalar& vClipMask, PA_STATE& pa, const simdscalari& vPrimId, const simdscalari& vViewportIdx)
    {
...
        uint32_t provokingVertex = 0;
        if(pa.binTopology == TOP_TRIANGLE_FAN)
        {
            provokingVertex = this->state.frontendState.provokingVertex.triFan;
        }
        ///@todo: line topology for wireframe?

Which is ... obviously wrong. That said, I'm not sure what the right thing is, esp in light of how the topologyProvokingVertex is selected in the FE. I leave it to the pro's.
Comment 2 Zebediah Figura 2019-04-14 01:16:56 UTC
This also affects softpipe and llvmpipe. I'm not familiar with mesa, but I think there are multiple places that do the wrong thing. For example, do_clip_tri() in src/gallium/auxiliary/draw/draw_pipe_clip.c gets passed the vertices in winding order, but it doesn't take that into account when determining provoking vertex.

If this should be split off to a separate bug, then I'll do so.

This causes failures in Wine's conformance test suite, since we use GL_FIRST_VERTEX_CONVENTION universally, and test flat shading with GL_TRIANGLESTRIP and some vertices slightly clipped outside of the viewport. Since our test suite is run in a virtual machine, it uses llvmpipe, and so is affected by this bug.
Comment 3 Roland Scheidegger 2019-04-15 16:58:57 UTC
(In reply to Zebediah Figura from comment #2)
> This also affects softpipe and llvmpipe. I'm not familiar with mesa, but I
> think there are multiple places that do the wrong thing. For example,
> do_clip_tri() in src/gallium/auxiliary/draw/draw_pipe_clip.c gets passed the
> vertices in winding order, but it doesn't take that into account when
> determining provoking vertex.
> 
> If this should be split off to a separate bug, then I'll do so.
> 
> This causes failures in Wine's conformance test suite, since we use
> GL_FIRST_VERTEX_CONVENTION universally, and test flat shading with
> GL_TRIANGLESTRIP and some vertices slightly clipped outside of the viewport.
> Since our test suite is run in a virtual machine, it uses llvmpipe, and so
> is affected by this bug.

I suspect it's a different issue. For llvmpipe the piglit test you pointed out works just fine.
(I have some suspicion for llvmpipe/softpipe it would make a difference if you use interpolation qualifier flat vs. shade model flat. See the FIXME in draw_pt_decompose.h - the order of decomposing should only be determined by flatshade_first, and not depend on if flatshade is actually active. But we need this to compensate for some bug elsewhere, apparently...)
Comment 4 Zebediah Figura 2019-04-16 15:13:57 UTC
(In reply to Roland Scheidegger from comment #3)
> I suspect it's a different issue. For llvmpipe the piglit test you pointed
> out works just fine.
> (I have some suspicion for llvmpipe/softpipe it would make a difference if
> you use interpolation qualifier flat vs. shade model flat. See the FIXME in
> draw_pt_decompose.h - the order of decomposing should only be determined by
> flatshade_first, and not depend on if flatshade is actually active. But we
> need this to compensate for some bug elsewhere, apparently...)

Yes, you're right; I see now this is a different bug. Sorry for polluting this one. I've opened bug 110451.
Comment 5 GitLab Migration User 2019-09-18 18:24:06 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/mesa/mesa/issues/189.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.