summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-10-06xalloc+memset(0) -> xcallocAdam Jackson43-179/+68
2008-10-06xalloc+bzero -> xcallocAdam Jackson12-58/+19
2008-10-06RANDR: Delivery output property events.Keith Packard1-6/+32
2008-10-07exa: don't call composite routines with no buffer.Dave Airlie1-6/+8
We can get a case with gnome-terminal + links, where we get two arrays of glyphs all with 0 width and 0 heights in them. If this happens we manage to get to this case without any buffer setup and segfault.
2008-10-04XQuartz: Bumped bundle version to 2.3.2 for beta1Jeremy Huddleston1-3/+3
(cherry picked from commit 2021c4c4e726a6b8f27f19f16ed3d86e37dbe448)
2008-10-04XQuartz: pbcopy: Re-enabled some code I commented out for testingJeremy Huddleston1-4/+4
(cherry picked from commit 9b5d11409264080e394c8f18e06237122de80014)
2008-10-04XQuartz: xpbproxy: Support some of the preference toggles from X11.app, ↵Jeremy Huddleston6-115/+144
cleaned up CLIPBOARD_MANAGER atom management. (cherry picked from commit f7673bb4de3c1f71eb390a3279eed3589efc3df4)
2008-10-04XQuartz: GLX - enable_stereo defaults option should work nowJeremy Huddleston2-14/+6
(cherry picked from commit 3a6898f48756fdb2898292679301ef3dc109b4f6)
2008-10-04dri2: fix compilation (remove no longer existing include file)Roland Scheidegger1-1/+0
2008-10-03exa: remove "direct" case for exa{Trapezoids,Triangles}Maarten Maathuis1-84/+7
- By adding a small hack to the xserver i was able to easily test the performance of the normally rare direct case (using cairo). - It turned out to be 70% slower for me (large test on an otherwise idle computer), which seems enough of a reason to remove it. - AddTraps could also use a 2nd look, but since noone is using that it's a bit hard and less useful to test.
2008-10-03exa: remove some excessive whitespaceMaarten Maathuis2-11/+10
2008-10-03Dangling use of miDestroyGCOpsAdam Jackson1-1/+0
2008-10-03Fix compile for miSetScreenPixmap prototype.Adam Jackson1-4/+0
2008-10-03Delete unused miModifyBanking()Adam Jackson2-60/+0
2008-10-03Remove unused wrapping for visual initialization.Adam Jackson5-60/+3
2008-10-03staticize mi{G,S}etScreenPixmapAdam Jackson1-13/+13
2008-10-03miFindMaxBand is dead codeAdam Jackson2-34/+0
2008-10-03mi{Create,Destroy}GCOps are unused, nuke 'em.Adam Jackson2-33/+0
2008-10-03Remove a bunch of unused API from the mi export list.Adam Jackson16-49/+21
2008-10-03loader: sort the mi symbol listAdam Jackson1-97/+97
2008-10-03Remove unused pciNumBusesAdam Jackson6-10/+0
2008-10-03Remove the Must_have_memory hack.Adam Jackson6-84/+38
Also remove an astonishing amount of misunderstanding of how casts work.
2008-10-03const cleanupAdam Jackson4-6/+4
2008-10-03Drop the never-called SkippedRequestCallback list.Adam Jackson4-106/+0
2008-10-03Unexport MakeClientGrab{Imp,P}erviousAdam Jackson2-4/+2
xtrap used to use these, but it's gone now. xtest still does but it's linked statically.
2008-10-03Unexport xf86NoSharedResourcesAdam Jackson2-2/+1
2008-10-03Unexport xf86DeallocateResourcesForEntityAdam Jackson2-2/+1
2008-10-03Unexport xf86SetEntityFuncsAdam Jackson2-2/+1
2008-10-03Unexport xf86ChkConflictAdam Jackson4-14/+2
Also remove the unused internal ChkConflict()
2008-10-03Remove unused server state change callbackery.Adam Jackson5-81/+0
2008-10-03xf86RegisterResources: Always print any failed registrations.Adam Jackson1-4/+4
2008-10-03Typo fix.Adam Jackson1-1/+1
2008-10-03Remove the old implementation of RemoveOverlapsAdam Jackson1-70/+0
2008-10-03Internalise some resource list API.Adam Jackson3-11/+4
2008-10-03Unexport xf86EnterServerStateAdam Jackson2-2/+1
2008-10-03Unexport (and unimplement) xf86SetAccessFuncs.Adam Jackson3-21/+0
Because, no.
2008-10-03RAC: NO_SEPARATE_*_FROM_* are useless.Adam Jackson1-16/+2
If anyone can come up with an example of a bus where: - both i/o and memory resources are addressable - access to them can be controlled - but they can't be controlled independently then by all means, reinstate this logic.
2008-10-03RAC: AccessEnable() and AccessDisable() are mandatory.Adam Jackson1-53/+46
2008-10-03Partially reverts commit 505c216d030a8eb6e9fa757ecebed9597a850c88.Jeremy Huddleston1-0/+250
I don't know how the hell git-cherrypick messed that up to delete fbwindow.c
2008-10-03XQuartz: pbproxy: Possibly fix a memory leak by using an [NSApp run] loop,George Peter Staplin4-16/+35
instead of calling CFRunLoopRun() directly. The leak wasn't reproducible on this machine, but someone was able to produce a leak trace with Instruments that indicates it was leaking in the CFRunLoopRun() path. x-input.m: dequeue and ignore events when pbproxy_active is false. x-selection.h: add an is_active method that is used by x-input.m to ignore events. x-selection.m: Handle nearly every preference, except for primary_on_grab, which I don't really understand yet. (cherry picked from commit 4d51ad851e64da83cbdfb0a4a22428418a7bcf75)
2008-10-03XQuartz: Use "pointer" and "pen" for device names to please GDK.Jeremy Huddleston1-3/+17
(cherry picked from commit 00ca0f4d839abf47e9573a1552473e039cf787e6)
2008-10-03XQuartz: Workaround for initial pressure/tilt being sent as 0 with motion ↵Jeremy Huddleston1-8/+18
during the proximity event (cherry picked from commit 9a91d770a6411dd876187e64a8bda1f0745169ae)
2008-10-03XQuartz: Using absolute ranges for pointer location to increase resolution ↵Jeremy Huddleston4-34/+31
and better support tablets. (cherry picked from commit d79ccb45f68b65d65718b5b77efe2fae6eeda762)
2008-10-03XQuartz: Removed resolved comment about localization.Jeremy Huddleston1-2/+0
(cherry picked from commit 8ed5faf058ac7b0782a9cc13a2c58b80168358d2)
2008-10-03XQuartz: pbproxy: Make the signal handler safer by using _exit, and only exit.George Peter Staplin5-71/+27
Remove some unnecesssary headers. Remove some dead code that was never called or used in pbproxy. Make use of an NSAutoreleasePool in x_init. It could potentially cause a leak on a startup without this. Start adding reload_preferences to the x_selection class, as well as event handling for that. (cherry picked from commit 602e8ba8f7ee196696bc9e3cea6ecdf3200dcf5c)
2008-10-03XQuartz: Added some localizable strings that were missing.Jeremy Huddleston1-0/+0
(cherry picked from commit 2c8205ea8b709c5859412b466e83aec7a94acdcf)
2008-10-03XQuartz: Actually send the pointer event from the pen even if it happes to ↵Jeremy Huddleston3-20/+20
actually have 0 pressure and 0 tilt. (cherry picked from commit f41583761955cb9c92c43239bfaa8ae0e5d95e33)
2008-10-03Xquartz: xpbproxy: Split out app-specific stuff to app-main.m in prep for ↵Jeremy Huddleston5-50/+65
making this into a thread. (cherry picked from commit c2012138a520560f8a2160518ea73fced410c3b7)
2008-10-03XQuartz: Send AppleWMReloadPreferences where appropriate.Jeremy Huddleston4-44/+39
(cherry picked from commit 490cbe9888e2c1080495b003c429fdb1659444e1)
2008-10-03XQuartz: Added a --enable-integrated-xpbproxy configure option for building ↵Jeremy Huddleston4-8/+24
xpbproxy as an app or as a thread. (cherry picked from commit 8edc5fb38c922f28659d2f823148339a8907c4d9) (cherry picked from commit 88033a66a5549870fd053795b019d4c22950425b)