aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tessellator
Commit message (Collapse)AuthorAgeFilesLines
* gallivm/tessellator: use private functions for min/max to avoid namespace issuesDave Airlie2020-03-031-45/+45
| | | | | | | | | | | | | Different builds are failing because of namespace collisions here. Just fix the MS code to avoid it. Fixes: bd0188f9eab ("gallium/auxiliary: add the microsoft tessellator and a pipe wrapper.") Reviewed-by: Tapani Pälli <[email protected]> Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2586 Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4016> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4016>
* gallium/auxiliary: add the microsoft tessellator and a pipe wrapper.Dave Airlie2020-02-284-0/+3411
This adds the same tessellator code that swr uses, swr should move to using this copy, unfortunately that wasn't trivial on my first look. The p_tessellator wrapper wraps it in a form that is a useful interface for draw. Reviewed-by: Roland Scheidegger <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3841>