Mesa (outputswritten64): r200: Convert OutputsWritten from GLbitfield to GLbitfield64

Ian Romanick idr at kemper.freedesktop.org
Wed Oct 28 16:55:39 UTC 2009


Module: Mesa
Branch: outputswritten64
Commit: d0b30ac3a4ddc25aa98fc7f8376bf8b9f53b5c7f
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d0b30ac3a4ddc25aa98fc7f8376bf8b9f53b5c7f

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Mon Oct 19 13:54:47 2009 -0700

r200: Convert OutputsWritten from GLbitfield to GLbitfield64

---

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

diff --git a/src/mesa/drivers/dri/r200/r200_tcl.c b/src/mesa/drivers/dri/r200/r200_tcl.c
index c702910..4ddb9e4 100644
--- a/src/mesa/drivers/dri/r200/r200_tcl.c
+++ b/src/mesa/drivers/dri/r200/r200_tcl.c
@@ -509,7 +509,8 @@ static GLboolean r200_run_tcl_render( GLcontext *ctx,
 	 prog to a not enabled output however, so just don't mess with it.
 	 We only need to change compsel. */
       GLuint out_compsel = 0;
-      GLuint vp_out = rmesa->curr_vp_hw->mesa_program.Base.OutputsWritten;
+      const GLbitfield64 vp_out =
+	 rmesa->curr_vp_hw->mesa_program.Base.OutputsWritten;
 
       vimap_rev = &rmesa->curr_vp_hw->inputmap_rev[0];
       assert(vp_out & (1 << VERT_RESULT_HPOS));




More information about the mesa-commit mailing list