Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

switch to recent devPrivates ABI (as used in X.org's Xserver) #560

Open
wants to merge 44 commits into
base: 3.6.x
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
ddd5284
Move EXTENSION_BASE and EXTENSION_EVENT_BASE to misc.h.
Nov 6, 2017
f8925ad
Add a common ARRAY_SIZE macro to dix.h
fooishbar Nov 6, 2017
bb64abb
X.org cherry-pick reverting X.org bug #6924.
sunweaver Jul 29, 2018
660fa50
mi{Create,Destroy}GCOps are unused, nuke 'em.
nwnk Nov 7, 2017
0a0e5d1
nxagent: Fake backing store support via Composite extension.
sunweaver Nov 20, 2017
1dd2f20
randr: Backport latest devPrivates ABI from X.org
sunweaver Nov 6, 2017
84f0b08
composite: Backport latest devPrivates ABI from X.org.
sunweaver Nov 6, 2017
b6eb64c
Xext: Backport latest devPrivates ABI from X.org.
sunweaver Nov 6, 2017
01ccaa8
include: Backport latest devPrivates ABI from X.org.
sunweaver Nov 7, 2017
66d68df
dix: Backport latest devPrivates ABI from X.org.
sunweaver Nov 7, 2017
a30c9ba
mi: Backport latest devPrivates ABI from X.org.
sunweaver Nov 7, 2017
a83f29c
xkb: Backport latest devPrivates ABI from X.org.
sunweaver Nov 7, 2017
71710e9
dbe: Backport latest devPrivates ABI from X.org.
sunweaver Nov 7, 2017
d3ae956
render: Backport latest devPrivates ABI from X.org.
sunweaver Nov 10, 2017
c0a1a89
damageext: Backport latest devPrivates ABI from X.org.
sunweaver Nov 10, 2017
d112afa
miext/cw: Backport latest devPrivates ABI from X.org.
sunweaver Nov 10, 2017
25c563c
xfixes: Backport latest devPrivates ABI from X.org.
sunweaver Nov 10, 2017
83d7159
record: Backport latest devPrivates ABI from X.org.
sunweaver Nov 10, 2017
4d4d45e
fb: Backport latest devPrivate ABI from X.org.
sunweaver Nov 10, 2017
5b3f2b7
miext/damage: Backport latest devPrivate ABI from X.org.
sunweaver Nov 13, 2017
310c2f3
rebase miext/damage/ devPrivates backport
sunweaver Nov 13, 2017
8910e8f
hw/nxagent: Backport latest devPrivates ABI from X.org.
sunweaver Nov 15, 2017
6cff6ac
rebase devPrivates xkb
sunweaver Nov 21, 2017
103dc70
rebase devPrivates dix
sunweaver Nov 21, 2017
f80ab1f
rebase devPrivates xkb
sunweaver Nov 21, 2017
e44213b
rebase devPrivates dix
sunweaver Nov 21, 2017
6df3122
rebase devPrivates include
sunweaver Nov 21, 2017
9235790
rebase devPrivates nxagent
sunweaver Nov 21, 2017
f7ee2e4
Eviscerate save-under support.
nwnk Nov 21, 2017
a19e251
Start devices after windows are initialized.
Nov 22, 2017
85129d1
mi: Don't save midispcur rendering resources for each cursor
keith-packard Nov 22, 2017
6109e99
dix/render: consolidate window format matching code.
airlied Nov 22, 2017
041b36e
mi: Delete unused flicker-free MoveCursor code.
jameysharp Nov 22, 2017
a7a3326
rebase devPrivates render
sunweaver Nov 22, 2017
fe360d8
rebase devPrivates nxagent
sunweaver Nov 22, 2017
51bfb20
rebase devPrivates include
sunweaver Nov 22, 2017
d1cedfb
rebase devPrivates dix
sunweaver Nov 22, 2017
0f6a6c1
rebase devPrivates Xext
sunweaver Jul 30, 2018
5351dcc
rebase devPrivates dix
sunweaver Jul 30, 2018
db6fca8
rebase devPrivates mi
sunweaver Jul 30, 2018
871386a
rebase devPrivates mi
sunweaver Jul 30, 2018
bfbc191
rebase devPrivates xfixes
sunweaver Jul 30, 2018
c4e0696
rebase devPrivates include/
sunweaver Jul 30, 2018
353e683
rebase devPrivates dix
sunweaver Jul 30, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Start devices after windows are initialized.
 Backported from X.org:

 commit 0214d0b96a9b900a8cf5c7f2183add3a411441f3
 Author: Peter Hutterer <peter@cs.unisa.edu.au>
 Date:   Tue May 1 15:49:41 2007 +0930

    Start devices after windows are initialized.

    This fixes the hotplug segfault introduced with the multihead changes and
    cleans up the code a bit as well.
  • Loading branch information
Peter Hutterer authored and sunweaver committed Jul 30, 2018
commit a19e2519b0fdaaed88f39056b341e9f2761c6c8e
11 changes: 6 additions & 5 deletions nx-X11/programs/Xserver/dix/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,6 @@ main(int argc, char *argv[], char *envp[])
if (!CreateRootWindow(pScreen))
FatalError("failed to create root window");
}
InitInput(argc, argv);
if (InitAndStartDevices() != Success)
FatalError("failed to initialize core devices");
ReserveClientIds(serverClient);

if (loadableFonts) {
SetFontPath(serverClient, 0, (unsigned char *)defaultFontPath);
} else {
Expand Down Expand Up @@ -329,6 +324,12 @@ main(int argc, char *argv[], char *envp[])
for (i = 0; i < screenInfo.numScreens; i++)
InitRootWindow(screenInfo.screens[i]->root);
DefineInitialRootWindow(screenInfo.screens[0]->root);

InitInput(argc, argv);
if (InitAndStartDevices() != Success)
FatalError("failed to initialize core devices");
ReserveClientIds(serverClient);

SaveScreens(SCREEN_SAVER_FORCER, ScreenSaverReset);

#ifdef PANORAMIX
Expand Down