summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Dänzer <michel.daenzer@amd.com>2017-07-13 17:35:55 +0900
committerMichel Dänzer <michel.daenzer@amd.com>2017-07-13 17:35:55 +0900
commit88147c1a532a9275eb57e14d8c11be41bf4c1fe1 (patch)
tree34bda1cddc22d6876b46a95e88eb862de5045308
parente90721ba654d70db5eeb1cf552308c73151530ee (diff)
Use drmmode_crtc->scanout_id instead of 0 to check for scanout buffer
Preparation for following change, no functional change intended. (Ported from radeon commit aff267ee36cc6a703a532f91f82adc1ba1425ff3) Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--src/amdgpu_dri2.c5
-rw-r--r--src/amdgpu_kms.c4
-rw-r--r--src/amdgpu_present.c2
3 files changed, 6 insertions, 5 deletions
diff --git a/src/amdgpu_dri2.c b/src/amdgpu_dri2.c
index 8dde293..a854ce5 100644
--- a/src/amdgpu_dri2.c
+++ b/src/amdgpu_dri2.c
@@ -608,7 +608,8 @@ can_exchange(ScrnInfoPtr pScrn, DrawablePtr draw,
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
if (crtc->enabled &&
- (crtc->rotatedData || drmmode_crtc->scanout[0].bo))
+ (crtc->rotatedData ||
+ drmmode_crtc->scanout[drmmode_crtc->scanout_id].bo))
return FALSE;
}
@@ -658,7 +659,7 @@ can_flip(ScrnInfoPtr pScrn, DrawablePtr draw,
continue;
if (!drmmode_crtc || drmmode_crtc->rotate.bo ||
- drmmode_crtc->scanout[0].bo)
+ drmmode_crtc->scanout[drmmode_crtc->scanout_id].bo)
return FALSE;
if (drmmode_crtc->pending_dpms_mode == DPMSModeOn)
diff --git a/src/amdgpu_kms.c b/src/amdgpu_kms.c
index b625250..cc64eb5 100644
--- a/src/amdgpu_kms.c
+++ b/src/amdgpu_kms.c
@@ -635,7 +635,7 @@ amdgpu_prime_scanout_update(PixmapDirtyUpdatePtr dirty)
drmmode_crtc = xf86_crtc->driver_private;
if (drmmode_crtc->scanout_update_pending ||
- !drmmode_crtc->scanout[0].pixmap ||
+ !drmmode_crtc->scanout[drmmode_crtc->scanout_id].pixmap ||
drmmode_crtc->pending_dpms_mode != DPMSModeOn)
return;
@@ -921,7 +921,7 @@ amdgpu_scanout_update(xf86CrtcPtr xf86_crtc)
if (!xf86_crtc->enabled ||
drmmode_crtc->scanout_update_pending ||
- !drmmode_crtc->scanout[0].pixmap ||
+ !drmmode_crtc->scanout[drmmode_crtc->scanout_id].pixmap ||
drmmode_crtc->pending_dpms_mode != DPMSModeOn)
return;
diff --git a/src/amdgpu_present.c b/src/amdgpu_present.c
index 86b095c..cf11d2b 100644
--- a/src/amdgpu_present.c
+++ b/src/amdgpu_present.c
@@ -234,7 +234,7 @@ amdgpu_present_check_unflip(ScrnInfoPtr scrn)
continue;
if (!drmmode_crtc || drmmode_crtc->rotate.bo ||
- drmmode_crtc->scanout[0].bo)
+ drmmode_crtc->scanout[drmmode_crtc->scanout_id].bo)
return FALSE;
if (drmmode_crtc->pending_dpms_mode == DPMSModeOn)