diff options
author | marha <marha@users.sourceforge.net> | 2012-10-09 08:50:49 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-10-09 08:50:49 +0200 |
commit | c48e25635aaafefec0c7761d5310f7d2071fc50c (patch) | |
tree | 604f86c42565fb75b496b4748661b3f29fae95ca /xorg-server/hw/xfree86/common | |
parent | de8397bc3d010bba24ec0c4d2e6249a769a86fc7 (diff) | |
download | vcxsrv-c48e25635aaafefec0c7761d5310f7d2071fc50c.tar.gz vcxsrv-c48e25635aaafefec0c7761d5310f7d2071fc50c.tar.bz2 vcxsrv-c48e25635aaafefec0c7761d5310f7d2071fc50c.zip |
fontconfig xserver mesa xkeyboard-config git update 9 oct 2012
fontconfig: e7bfe729ab4cae63ca502291c1fe46cf7152b459
mesa: 63c3a799aecff5348ecec3c4c13355996e4bf820
xserver: 0a75bd640b3dc26b89d9e342999a7f4b7e98edbf
xkeyboard-config: 2e9ab8be72b1d0306e5e6e8c33cde51c0c927450
Diffstat (limited to 'xorg-server/hw/xfree86/common')
-rw-r--r-- | xorg-server/hw/xfree86/common/xf86.h | 4 | ||||
-rw-r--r-- | xorg-server/hw/xfree86/common/xf86Helper.c | 6 | ||||
-rw-r--r-- | xorg-server/hw/xfree86/common/xf86Module.h | 2 |
3 files changed, 11 insertions, 1 deletions
diff --git a/xorg-server/hw/xfree86/common/xf86.h b/xorg-server/hw/xfree86/common/xf86.h index 179b87cf5..1514c2603 100644 --- a/xorg-server/hw/xfree86/common/xf86.h +++ b/xorg-server/hw/xfree86/common/xf86.h @@ -469,4 +469,8 @@ extern _X_EXPORT ScreenPtr xf86ScrnToScreen(ScrnInfoPtr pScrn); /* flags passed to xf86 allocate screen */ #define XF86_ALLOCATE_GPU_SCREEN 1 +/* Update the internal total dimensions of all ScreenRecs together */ +extern _X_EXPORT void +xf86UpdateDesktopDimensions(void); + #endif /* _XF86_H */ diff --git a/xorg-server/hw/xfree86/common/xf86Helper.c b/xorg-server/hw/xfree86/common/xf86Helper.c index f681a8577..721159d0b 100644 --- a/xorg-server/hw/xfree86/common/xf86Helper.c +++ b/xorg-server/hw/xfree86/common/xf86Helper.c @@ -1898,3 +1898,9 @@ xf86ScrnToScreen(ScrnInfoPtr pScrn) return screenInfo.screens[pScrn->scrnIndex]; } } + +void +xf86UpdateDesktopDimensions(void) +{ + update_desktop_dimensions(); +} diff --git a/xorg-server/hw/xfree86/common/xf86Module.h b/xorg-server/hw/xfree86/common/xf86Module.h index fd90aac54..1be7ba54d 100644 --- a/xorg-server/hw/xfree86/common/xf86Module.h +++ b/xorg-server/hw/xfree86/common/xf86Module.h @@ -80,7 +80,7 @@ typedef enum { * mask is 0xFFFF0000. */ #define ABI_ANSIC_VERSION SET_ABI_VERSION(0, 4) -#define ABI_VIDEODRV_VERSION SET_ABI_VERSION(14, 0) +#define ABI_VIDEODRV_VERSION SET_ABI_VERSION(14, 1) #define ABI_XINPUT_VERSION SET_ABI_VERSION(18, 0) #define ABI_EXTENSION_VERSION SET_ABI_VERSION(7, 0) #define ABI_FONT_VERSION SET_ABI_VERSION(0, 6) |