diff options
author | Ilija Hadzic <ihadzic@research.bell-labs.com> | 2011-03-24 13:33:27 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2011-04-02 09:39:51 -0400 |
commit | 0af6386f85a0f1ba14864a3334164733a10a6cb8 (patch) | |
tree | b63c87641c36cd34f8221211c20c4e94df384ce9 /src/radeon.h | |
parent | fe2e0ad3ffa58f40311319c950b842e2928a5740 (diff) |
xf86-video-ati: (revised #2) add support for vblank on crtc > 1
Hi Alex,
Enclosed is a revised version of two patches sent on Mar 18 and Mar 22,
respectively. Details summarized in these two threads:
http://lists.freedesktop.org/archives/dri-devel/2011-March/009463.html
http://lists.freedesktop.org/archives/dri-devel/2011-March/009582.html
This patch reconciles the DDX with the change in libdrm sent to this list
earlier today. Specifically, it refers to a symbol that has been renamed
from DRM_CAP_HIGH_CRTC to DRM_CAP_VBLANK_HIGH_CRTC. It *supersedes* the
previous patch (i.e. apply it to the master branch as it exists at the
time of this writing, not as an incremental patch to the one sent previously).
Regards,
Ilija
Signed-off-by: Ilija Hadzic <ihadzic@research.bell-labs.com>
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Diffstat (limited to 'src/radeon.h')
-rw-r--r-- | src/radeon.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/radeon.h b/src/radeon.h index a6d20d71..1a746c75 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -931,6 +931,9 @@ typedef struct { RADEONFBLayout CurrentLayout; +#ifdef RADEON_DRI2 + Bool high_crtc_works; +#endif #ifdef XF86DRI Bool directRenderingEnabled; Bool directRenderingInited; |