Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2006-07-21 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver into ↵ | Daniel Stone | 1106 | -1744/+3844 | |
input-hotplug | |||||
2006-07-21 | xephyr: load keysyms at init, not enable | Daniel Stone | 1 | -14/+11 | |
Load keysyms at init time, not enable, so we don't get the wrong map width. | |||||
2006-07-21 | Remove RCS tags. Fix Xprint makefile braindamage. | Adam Jackson | 1105 | -1511/+6 | |
2006-07-21 | Fix the RandR failure path for rotated screens. | Aaron Plattner | 1 | -4/+8 | |
2006-07-21 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver | Ian Romanick | 14 | -139/+28 | |
2006-07-21 | bug #890: completely remove deprecated keyboard driver | Kristian Høgsberg | 26 | -3834/+43 | |
Remove all remnants of the old built-in keyboard driver. | |||||
2006-07-21 | xorg ddx: move to new input API, remove old keyboard driver | Daniel Stone | 15 | -1967/+380 | |
Remove most of the rest of the old keyboard driver. Move to the new Get{Keyboard,Pointer}Events API, which is mostly complete at this stage: just missing the proximity events. | |||||
2006-07-21 | be more careful in IVAS | Daniel Stone | 1 | -1/+6 | |
Don't walk off the end of a NULL pointer in InitValuatorAxisStruct. | |||||
2006-07-21 | xephyr: fix keymap, pointer; dix: fix multiple axes | Daniel Stone | 4 | -16/+19 | |
Initialise our axes properly in the DIX, and make sure we don't unnecessarily clip maxval when it's not set. Fix keymap copying in Xephyr (to some degree: it's still broken), and set nAxes and nButtons properly. | |||||
2006-07-21 | sanitise debug output | Daniel Stone | 2 | -10/+7 | |
Don't spit out huge chunks of pointless ephemera, especially without --enable-debug. | |||||
2006-07-21 | update KDrive to new input API | Daniel Stone | 2 | -2/+23 | |
Update KDrive to fit the new API (mieqInit and InitPointerDeviceStruct), and include InitTouchscreenDeviceStruct in the DIX. | |||||
2006-07-21 | add virtual core devices to DIX | Daniel Stone | 9 | -152/+414 | |
Add virtual core devices, with proper keymaps etc, to the DIX. | |||||
2006-07-21 | define SDevicePresenceNotifyEvent prototype | Kristian Høgsberg | 1 | -0/+6 | |
2006-07-21 | distribute config.h | Daniel Stone | 1 | -0/+1 | |
2006-07-21 | remove extraneous font debugging code | Daniel Stone | 1 | -56/+0 | |
Some of it didn't compile, and some of it was just unnecessary. | |||||
2006-07-21 | avoid using font servers with built-in fonts | Daniel Stone | 1 | -0/+3 | |
2006-07-21 | add support for built-in fonts | Daniel Stone | 4 | -5/+22 | |
Use --enable-builtin-fonts to only use built-in fonts, and avoid loading fonts. | |||||
2006-07-21 | Xi: add XExtension{Keyboard,Pointer} types | Daniel Stone | 1 | -0/+4 | |
Report XExtensionKeyboard for non-core keyboards, and XExtensionPointer for non-core pointers/mice. | |||||
2006-07-21 | Xi: add DevicePresenceNotify | Kristian Høgsberg | 3 | -15/+85 | |
Add support for DevicePresenceNotify events. | |||||
2006-07-21 | make XInput mandatory | Daniel Stone | 2 | -12/+4 | |
Always build Xi, since GetPointerEvents/GetKeyboardEvents relies on it. | |||||
2006-07-21 | new KDrive input world order | Daniel Stone | 38 | -1672/+3164 | |
Convert KDrive to GPE/GKE interface. Add first-class drivers and enumerate every device separately through Xi, instead of lamely attempting to aggregate them. Add XKB support to the Linux keyboard driver. Add 'thumb button' support to the tslib driver. Rejig InitInput, so each DDX has to add a list of drivers it supports. Support NewInputDeviceRequest, et al. | |||||
2006-07-21 | add GetPointerEvents/GetKeyboardEvents framework | Daniel Stone | 4 | -0/+438 | |
Add GetPointerEvents (with XFree86 pointer acceleration) and GetKeyboardEvents to the DIX. Extend the ValuatorClass structure to account for same. | |||||
2006-07-21 | add DEVICE_TOUCHSCREEN and DEVICE_CORE Xi controls (DeviceIntRec ABI break) | Daniel Stone | 5 | -0/+133 | |
Add DEVICE_TOUCHSCREEN and DEVICE_CORE controls to the Xi code, and the TouchscreenClassRec and a coreEvents flag, to toggle propagation of core events. | |||||
2006-07-21 | xorg DDX: implement NewInputDeviceRequest | Daniel Stone | 4 | -16/+93 | |
Implement NewInputDeviceRequest for Xorg, mainly written by Kristian Høgsberg. Move MatchInput to xf86Helper.c, as xf86LookupInputDriver. | |||||
2006-07-21 | add basic D-BUS configuration mechanism | Daniel Stone | 12 | -6/+404 | |
Also move LookupDeviceIntRec into the DIX, and add InputOption type, and NewInputDeviceRequest prototype (DIX requests DDX to add a device). Does not link without an implemented NIDR. | |||||
2006-07-21 | kdrive: allow debugging | Daniel Stone | 1 | -0/+3 | |
2006-07-21 | never define MEMBUG | Daniel Stone | 1 | -6/+0 | |
Definining MEMBUG causes allocations to randomly fail. | |||||
2006-07-21 | define DEBUG in DIX | Daniel Stone | 1 | -0/+3 | |
Which makes #ifdef DEBUG actually useful. Incredible. | |||||
2006-07-21 | exa: only disable cw when COMPOSITE is built | Daniel Stone | 1 | -0/+2 | |
2006-07-21 | fix KdXvCopyPackedData to actually work | Daniel Stone | 1 | -1/+1 | |
Remove extraneous bit shift in KdXvCopyPackedData, so it's actually useful. | |||||
2006-07-21 | fix minor typo | Daniel Stone | 1 | -1/+1 | |
2006-07-21 | fix XEvIE build without XKB | Daniel Stone | 1 | -6/+18 | |
Don't unconditionally play with XKB stuff in XEvIE. | |||||
2006-07-20 | Remove unused variable. | Ian Romanick | 1 | -1/+0 | |
2006-07-20 | Remove the DDXTIME conditional, for being unused. | Adam Jackson | 8 | -125/+0 | |
2006-07-20 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver | Ian Romanick | 148 | -672/+175 | |
2006-07-18 | get rid of XFree86LOADER, XFree86Server, XFree86Module, and IN_MODULE | Daniel Stone | 141 | -652/+146 | |
Get rid of almost all uses of these definitions. They're still defined for delinquent out-of-tree drivers, and also for the Mesa build. As well as for miinitext.c. But largely gone. | |||||
2006-07-17 | Fix the Linux ACPI reopen code to use a repeating timer, rather than a | Adam Jackson | 1 | -3/+15 | |
one-shot sleep-and-reopen attempt. | |||||
2006-07-15 | Un-glx-libcwrap DMX GLX proxy so it works without GL/include. | Kristian Høgsberg | 6 | -17/+14 | |
2006-07-14 | Add some const qualifiers to serveral function parameters. | Ian Romanick | 3 | -10/+11 | |
2006-07-14 | Rearrange code in xf86int10ParseBiosLocation to use strncasecmp. This | Ian Romanick | 1 | -23/+16 | |
eliminates the need for the first use of xstrdup in this function. The second use of xstrdup was *never* necessary and has also been eliminated. | |||||
2006-07-14 | Refactor common code from the generic.c and linux.c version of | Ian Romanick | 4 | -184/+135 | |
xf86ExtendedInitInt10 to xf86int10GetBiosLocationType and xf86int10GetBiosSegment. These changes were tested on MGA hardware on x86-64 with various combinations of InitPrimary and BiosLocation. | |||||
2006-07-14 | Refactor identical xf86InitInt10 function from generic.c and linux.c | Ian Romanick | 3 | -12/+6 | |
to helper_exec.c. | |||||
2006-07-14 | Trivial refactor of libint10_la_SOURCES. | Ian Romanick | 1 | -7/+13 | |
2006-07-13 | Bug #7482: Fix Xdmx's Render code to match reality; fixes BadLength client | James Steven Supancic III | 1 | -1/+1 | |
crashes. | |||||
2006-07-11 | Bug #7346: Disable Composite extension in Xprt | Drew Parsons | 1 | -0/+1 | |
Xorg Bug #7346 <https://bugs.freedesktop.org/show_bug.cgi?id=7346> Patch #6184 <https://bugs.freedesktop.org/attachment.cgi?id=6184> | |||||
2006-07-10 | Fix the configure check for the --{enable,disable}-dpms option | Gustavo Pichorim Boiko | 1 | -1/+1 | |
2006-07-09 | Replace GNU make-ism. | Matthieu Herrb | 1 | -1/+1 | |
2006-07-08 | Fix crash in Xephyr when running on host X with keymap width < 4 ( i.e xvnc ) | Matthew Allum | 1 | -12/+8 | |
2006-07-08 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver | Matthew Allum | 11 | -98/+100 | |
2006-07-08 | Add support to Xephyr for simulating 8bit grayscale. | Matthew Allum | 2 | -7/+22 | |