diff options
author | Keith Packard <keithp@dulcimer.keithp.com> | 2007-05-25 17:32:06 -0700 |
---|---|---|
committer | Keith Packard <keithp@dulcimer.keithp.com> | 2007-05-25 17:32:06 -0700 |
commit | 33f635d79fe891079558fd909d564f3cf424c482 (patch) | |
tree | b6b7e8a1365eef9a068ef0166b825fbe63ea6e68 /src/i830_video.h | |
parent | ff0ac8ea63dd6e55573652c5826c482881da0d62 (diff) |
Ensure Pipe A is active when enabling overlay the first time.
The overlay on the i830 appears to be clocked by Pipe A when being enabled.
If pipe A is not running, it will freeze the overlay and blank the screen.
Setting a random mode on the Pipe and turning it on fixes this problem
nicely.
Diffstat (limited to 'src/i830_video.h')
-rw-r--r-- | src/i830_video.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/i830_video.h b/src/i830_video.h index 7e2d1498..88a7bd9e 100644 --- a/src/i830_video.h +++ b/src/i830_video.h @@ -77,6 +77,7 @@ typedef struct { int oneLineMode; int scaleRatio; Bool textured; + Bool started_video; } I830PortPrivRec, *I830PortPrivPtr; #define GET_PORT_PRIVATE(pScrn) \ |