Mesa (master): r200: Fix commit size prediction.

Pauli Nieminen suokko at kemper.freedesktop.org
Tue Aug 25 18:37:13 UTC 2009


Module: Mesa
Branch: master
Commit: 75df73838a0b75d7ee9a67369dabc08d92a59d57
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=75df73838a0b75d7ee9a67369dabc08d92a59d57

Author: Pauli Nieminen <suokkos at gmail.com>
Date:   Tue Aug 25 21:36:19 2009 +0300

r200: Fix commit size prediction.

Scissor are emited for every primitive so fix that in prediction.

---

 src/mesa/drivers/dri/r200/r200_tcl.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/r200/r200_tcl.c b/src/mesa/drivers/dri/r200/r200_tcl.c
index 7b3a9fc..67a226f 100644
--- a/src/mesa/drivers/dri/r200/r200_tcl.c
+++ b/src/mesa/drivers/dri/r200/r200_tcl.c
@@ -413,9 +413,12 @@ static GLuint r200EnsureEmitSize( GLcontext * ctx , GLubyte* vimap_rev )
       else
 	space_required += index + elts;
       space_required += AOS_BUFSZ(nr_aos);
+      space_required += SCISSOR_BUFSZ;
     }
-    space_required += SCISSOR_BUFSZ;
   }
+
+  if (RADEON_DEBUG & DEBUG_PRIMS)
+     fprintf(stderr, "%s space %u, aos %d\n", space_required, AOS_BUFSZ(nr_aos) );
   /* flush the buffer in case we need more than is left. */
   if (rcommonEnsureCmdBufSpace(&rmesa->radeon, space_required + state_size, __FUNCTION__))
     return space_required + radeonCountStateEmitSize( &rmesa->radeon );




More information about the mesa-commit mailing list