diff options
author | Eric Anholt <eric@anholt.net> | 2009-07-09 15:52:16 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-07-09 15:52:16 -0700 |
commit | 4e4b947f0b13f4a62606ccfd5729d5eb26ca0e92 (patch) | |
tree | c690f5679165a6e00520e1c0389525017a4ad412 | |
parent | 9155cfca75a207bce0fad945f32f0cb33eab8c4e (diff) |
Remove bad comment about 3DSTATE_DRAWING_RECTANGLE size.
-rw-r--r-- | src/i965_render.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i965_render.c b/src/i965_render.c index 8ab984dd..eeb23e12 100644 --- a/src/i965_render.c +++ b/src/i965_render.c @@ -1233,7 +1233,7 @@ i965_emit_composite_state(ScrnInfoPtr pScrn) /* The drawing rectangle clipping is always on. Set it to values that * shouldn't do any clipping. */ - OUT_BATCH(BRW_3DSTATE_DRAWING_RECTANGLE | 2); /* XXX 3 for BLC or CTG */ + OUT_BATCH(BRW_3DSTATE_DRAWING_RECTANGLE | 2); OUT_BATCH(0x00000000); /* ymin, xmin */ OUT_BATCH(DRAW_YMAX(pDst->drawable.height - 1) | DRAW_XMAX(pDst->drawable.width - 1)); /* ymax, xmax */ |