The SIMD8 compile will determine whether pull parameters are necessary.
If so, it will set prog_data->nr_pull_params to a value greater than 0.
brw_wm_fs_emit checks if nr_pull_params > 0 and skips the SIMD16 compile
altogether. So, this code should never occur.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
if (uniforms <= max_uniform_components)
return;
- if (dispatch_width == 16) {
- fail("Pull constants not supported in SIMD16\n");
- return;
- }
-
/* Just demote the end of the list. We could probably do better
* here, demoting things that are rarely used in the program first.
*/