diff options
author | Bas Nieuwenhuizen <[email protected]> | 2017-10-06 01:10:44 +0200 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2017-10-06 01:41:29 +0200 |
commit | 0c90ca7d37e479dbf1099321ec5cb53662b98744 (patch) | |
tree | 2be2e576f9279c0513f3698280d1246595274136 | |
parent | c62afd094dc6aef58ba7f12f01b90c46e1f94262 (diff) |
radv: Make tess winding order a bit more intuitive.
Reviewed-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/amd/vulkan/radv_pipeline.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index 95a00cb357d..5da27935c2e 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -266,7 +266,6 @@ radv_tess_pipeline_compile(struct radv_pipeline *pipeline, if (tcs_nir == NULL) return; - tes_nir->info.tess.ccw = !tes_nir->info.tess.ccw; nir_lower_tes_patch_vertices(tes_nir, tcs_nir->info.tess.tcs_vertices_out); @@ -1555,9 +1554,9 @@ calculate_tess_state(struct radv_pipeline *pipeline, else if (tes->info.tes.primitive_mode == GL_ISOLINES) topology = V_028B6C_OUTPUT_LINE; else if (ccw) - topology = V_028B6C_OUTPUT_TRIANGLE_CW; - else topology = V_028B6C_OUTPUT_TRIANGLE_CCW; + else + topology = V_028B6C_OUTPUT_TRIANGLE_CW; if (pipeline->device->has_distributed_tess) { if (pipeline->device->physical_device->rad_info.family == CHIP_FIJI || |