i965/vs: Fix user clip plane setup on Gen4-5.
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 7 Nov 2012 06:23:05 +0000 (22:23 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 13 Nov 2012 09:27:33 +0000 (01:27 -0800)
commitfe2ef4b810ad1c2e712881742000bc0950b72660
tree97ee153ba09d9c51d64c6be3f728a61ae70fe57d
parent32628578439ea43bb55b3827e13351d96f7c2b0c
i965/vs: Fix user clip plane setup on Gen4-5.

On Gen6-7, we don't compact clip planes, and nr_userclip_plane_consts
is the last bit set, so iterating from i = 0..nr_userclip_plane_consts
covers all active clip planes and is the right thing to do.
works and is the right thing to do.

However, that doesn't work at all on Gen4-5.  Since we don't compact
clip planes, we skip over ones which aren't active (via the continue
statement).  We also set set nr_userclip_plane_consts to the number of
active clip planes, which means that we end the loop after checking that
many bits.  If the set of clip planes wasn't contiguous, this means we'd
fail to find the last few.

By changing the iteration to MAX_CLIP_PLANES, we correctly find all of
the active clip planes.

Fixes regressions since 66c8473e028d (replacing the old VS backend) in
Piglit's spec/glsl-1.20/execution/clipping/fixed-clip-enables and
oglconform's mustpass(basic.clip) and userclip(basic.allCases).

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=56791
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp