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

Author: Kevin DeKorte <[email protected]>
Date:   Mon Jul 20 09:27:17 2009 -0400

r600: Fix compilation

---

 src/mesa/drivers/dri/r600/r700_state.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mesa/drivers/dri/r600/r700_state.c 
b/src/mesa/drivers/dri/r600/r700_state.c
index 8946d14..eda224d 100644
--- a/src/mesa/drivers/dri/r600/r700_state.c
+++ b/src/mesa/drivers/dri/r600/r700_state.c
@@ -619,9 +619,9 @@ static void r700LineStipple(GLcontext *ctx, GLint factor, 
GLushort pattern)
     context_t *context = R700_CONTEXT(ctx);
     R700_CHIP_CONTEXT *r700 = (R700_CHIP_CONTEXT*)(&context->hw);
 
-    SETfield(r700->PA_SC_LINE_STIPPLE.u32All, pattern, LINE_PATTERN_shift, LINE
-    SETfield(r700->PA_SC_LINE_STIPPLE.u32All, (factor-1), REPEAT_COUNT_shift, 
REP
-    SETfield(r700->PA_SC_LINE_STIPPLE.u32All, 1, AUTO_RESET_CNTL_shift, AUTO_RE
+    SETfield(r700->PA_SC_LINE_STIPPLE.u32All, pattern, LINE_PATTERN_shift, 
LINE_PATTERN_mask);
+    SETfield(r700->PA_SC_LINE_STIPPLE.u32All, (factor-1), REPEAT_COUNT_shift, 
REPEAT_COUNT_mask);
+    SETfield(r700->PA_SC_LINE_STIPPLE.u32All, 1, AUTO_RESET_CNTL_shift, 
AUTO_RESET_CNTL_mask);
 }
 
 static void r700PolygonOffset(GLcontext * ctx, GLfloat factor, GLfloat units) 
//--------------

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to