Re: [Mesa-dev] [PATCH] st/mesa: fix max_offset computation for base vertex

2012-04-06 Thread Marek Olšák
Thank you very much, Brian. Reviewed-by: Marek Olšák Marek On Fri, Apr 6, 2012 at 1:14 AM, Brian Paul wrote: > Add the maximum base vertex offset to max_index (if max_index is not ~0). > Fixes a failed assertion in the u_upload_mgr.c code with the VMware svga > driver. > > Fixes https://bugs.f

[Mesa-dev] [PATCH] st/mesa: fix max_offset computation for base vertex

2012-04-05 Thread Brian Paul
Add the maximum base vertex offset to max_index (if max_index is not ~0). Fixes a failed assertion in the u_upload_mgr.c code with the VMware svga driver. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=48141 v2: incorporate Marek's suggestions. NOTE: This is a candidate for the 8.0 branch. -