mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 04:40:02 +01:00
xfree86: add xf86UpdateDesktopDimensions()
This call is required for external drivers (specifically NVIDIA) that do
not share the xfree86 infrastructure to update the desktop dimensions.
Without it, the driver would update the ScreenRecs but not update the total
dimensions the input code relies on for transformation.
This call is a thin wrapper around the already-existing internal call and
should be backported to all stable series servers, with the minor ABI bump.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
CC: Andy Ritger <aritger@nvidia.com>
Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
(cherry picked from commit 0a75bd640b)
Conflicts:
hw/xfree86/common/xf86.h
hw/xfree86/common/xf86Helper.c
hw/xfree86/common/xf86Module.h
This commit is contained in:
parent
78c77356c5
commit
9422321b37
3 changed files with 10 additions and 1 deletions
|
|
@ -451,4 +451,7 @@ VidModeExtensionInit(ScreenPtr pScreen);
|
|||
|
||||
#endif /* _NO_XF86_PROTOTYPES */
|
||||
|
||||
/* Update the internal total dimensions of all ScreenRecs together */
|
||||
extern _X_EXPORT void
|
||||
xf86UpdateDesktopDimensions(void);
|
||||
#endif /* _XF86_H */
|
||||
|
|
|
|||
|
|
@ -1834,3 +1834,9 @@ xf86MotionHistoryAllocate(InputInfoPtr pInfo)
|
|||
{
|
||||
AllocateMotionHistory(pInfo->dev);
|
||||
}
|
||||
|
||||
void
|
||||
xf86UpdateDesktopDimensions(void)
|
||||
{
|
||||
update_desktop_dimensions();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ typedef enum {
|
|||
* mask is 0xFFFF0000.
|
||||
*/
|
||||
#define ABI_ANSIC_VERSION SET_ABI_VERSION(0, 4)
|
||||
#define ABI_VIDEODRV_VERSION SET_ABI_VERSION(12, 1)
|
||||
#define ABI_VIDEODRV_VERSION SET_ABI_VERSION(12, 2)
|
||||
#define ABI_XINPUT_VERSION SET_ABI_VERSION(16, 0)
|
||||
#define ABI_EXTENSION_VERSION SET_ABI_VERSION(6, 0)
|
||||
#define ABI_FONT_VERSION SET_ABI_VERSION(0, 6)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue