diff options
author | Eric Anholt <eric@anholt.net> | 2006-09-14 10:05:51 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2006-09-14 10:05:51 -0700 |
commit | f46c70e877a3432ba23696e1a16d5906183876af (patch) | |
tree | 8b3e3b2979623e75042f1941663b76dfe20f09b5 | |
parent | ce00db054bf0b7f62ff0be312d7e3470141922dc (diff) |
Add a note on maxX/maxY for the 2D rendering.
-rw-r--r-- | src/i830_exa.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/i830_exa.c b/src/i830_exa.c index a2382ba3..6a7028fa 100644 --- a/src/i830_exa.c +++ b/src/i830_exa.c @@ -452,6 +452,8 @@ I830EXAInit(ScreenPtr pScreen) pI830->EXADriverPtr->pixmapOffsetAlign = 256; pI830->EXADriverPtr->pixmapPitchAlign = 64; + + /* i845 and i945 2D limits rendering to 65536 lines and pitch of 32768. */ pI830->EXADriverPtr->maxX = 4095; pI830->EXADriverPtr->maxY = 4095; |