diff options
author | Michel Dänzer <michel.daenzer@amd.com> | 2015-04-02 18:10:42 +0900 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2015-04-23 10:15:14 +0900 |
commit | 39c497f3efca5ca08343b884f44c93215dcdef31 (patch) | |
tree | 23ea4c539e320a52b9726247dd8de1ea9537a3e7 /src/drmmode_display.h | |
parent | 1af044d7eee211fd4b248c236280274a68334da5 (diff) |
Only copy fbcon BO contents if bgNoneRoot is TRUE
Otherwise, the X server will initialize the screen pixmap contents
anyway.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'src/drmmode_display.h')
-rw-r--r-- | src/drmmode_display.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drmmode_display.h b/src/drmmode_display.h index 1908b46c..49b02d63 100644 --- a/src/drmmode_display.h +++ b/src/drmmode_display.h @@ -127,7 +127,9 @@ extern Bool drmmode_set_bufmgr(ScrnInfoPtr pScrn, drmmode_ptr drmmode, struct ra extern void drmmode_set_cursor(ScrnInfoPtr scrn, drmmode_ptr drmmode, int id, struct radeon_bo *bo); void drmmode_adjust_frame(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int x, int y); extern Bool drmmode_set_desired_modes(ScrnInfoPtr pScrn, drmmode_ptr drmmode); +#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) >= 10 extern void drmmode_copy_fb(ScrnInfoPtr pScrn, drmmode_ptr drmmode); +#endif extern Bool drmmode_setup_colormap(ScreenPtr pScreen, ScrnInfoPtr pScrn); extern void drmmode_scanout_free(ScrnInfoPtr scrn); |