diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2020-11-16 15:09:14 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2020-11-16 15:23:28 +0000 |
commit | ad5540f6ecaec287c70259f0181e613561b716f6 (patch) | |
tree | 5fc907454a1bf79711a9e0ca82d3fc0cde85f700 /src/compat-api.h | |
parent | 4e8ae05f20e43c56ee7b15bbc66a472d4361a777 (diff) |
More ABI changes for ABI_VIDEODRV_VERSION 25.2
Descending down into the naming changes, onto the next struct in the
chain.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/compat-api.h')
-rw-r--r-- | src/compat-api.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compat-api.h b/src/compat-api.h index 336698d3..4bb6be45 100644 --- a/src/compat-api.h +++ b/src/compat-api.h @@ -262,8 +262,10 @@ static inline void FreePixmap(PixmapPtr pixmap) #if ABI_VIDEODRV_VERSION >= SET_ABI_VERSION(25, 2) #define PixmapDirtyDst(d) ((d)->secondary_dst) +#define PixmapDirtyPrimary(d) (PixmapDirtyDst(d)->primary_pixmap) #else #define PixmapDirtyDst(d) ((d)->slave_dst) +#define PixmapDirtyPrimary(d) (PixmapDirtyDst(d)->master_pixmap) #endif #endif |