No piglit regressions on i915 (G33) or radeon (Radeon 7500).
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
Cc: "10.6 11.0" <mesa-stable@lists.freedesktop.org>
/* Emit whole number of quads in total. dmasz is already a multiple
* of 4.
*/
- count -= count % 4;
+ count -= count & 3;
currentsz = (GET_CURRENT_VB_MAX_VERTS()/4) * 4;
if (currentsz < 8)
currentsz = GET_CURRENT_VB_MAX_ELTS()/4*4;
- count -= count % 4;
+ count -= count & 3;
if (currentsz < 8)
currentsz = dmasz;