i965/sbe: fix active components for SSO programs with over 16 inputs
authorIago Toral Quiroga <itoral@igalia.com>
Fri, 13 Oct 2017 07:22:54 +0000 (09:22 +0200)
committerIago Toral Quiroga <itoral@igalia.com>
Thu, 19 Oct 2017 06:31:42 +0000 (08:31 +0200)
commit16631ca30ea6d6eec8101f07d97a55b2210026e8
tree0f6ac3ca939f97064f6d8c872be9e0d24364c268
parentb7c655f700d5e12d3cd81b1cb66fce17019f934d
i965/sbe: fix active components for SSO programs with over 16 inputs

When we have up to 16 FS inputs, the SF unit will reorder our inputs
to be consecutive, however, when we have more than 16 we need to
to read our inputs from the URB exactly as they have been
output from the previous stage. This means that for SSO we have to
consider if we have URB padding due to unused input locations.

Specifically, this affects gen9 active components programming, since
for things to work in scenarios with over 16 inputs that have padded
regions we need to ensure that we program active components for the
padded regions too. If we don't do this the hardware won't read
the URB properly for inputs located after padded regions.

Found empirically.

Fixes (these also require a patch in CTS):
KHR-GL45.enhanced_layouts.varying_locations
KHR-GL45.enhanced_layouts.varying_array_locations

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/genX_state_upload.c