iris: Fix TCS/TES slot unification

TCS outputs, TES inputs...not TCS inputs

Fixes some barrier tests
This commit is contained in:
Kenneth Graunke
2018-11-16 16:01:28 -08:00
parent da5590496e
commit 8545e39808

View File

@@ -684,8 +684,8 @@ get_unified_tess_slots(const struct iris_context *ice,
*per_patch_slots = tes->patch_inputs_read;
if (tcs) {
*per_vertex_slots |= tcs->inputs_read;
*per_patch_slots |= tcs->patch_inputs_read;
*per_vertex_slots |= tcs->outputs_written;
*per_patch_slots |= tcs->patch_outputs_written;
}
}