mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-01 01:20:10 +01:00
Remove the numVideoScreens xprintism.
This was to account for cases where you had video and print screens in
the same server. Lunacy. Leave the slot in ScreenInfo, but rename it,
and stop looking at it.
(cherry picked from commit a82e6efb7b)
This commit is contained in:
parent
4f419215ee
commit
6cab826c52
3 changed files with 4 additions and 16 deletions
|
|
@ -1892,21 +1892,12 @@ InitFonts (void)
|
|||
{
|
||||
patternCache = MakeFontPatternCache();
|
||||
|
||||
#ifndef BUILTIN_FONTS
|
||||
if (screenInfo.numScreens > screenInfo.numVideoScreens) {
|
||||
PrinterFontRegisterFpeFunctions();
|
||||
FontFileCheckRegisterFpeFunctions();
|
||||
check_fs_register_fpe_functions();
|
||||
} else
|
||||
#endif
|
||||
{
|
||||
#ifdef BUILTIN_FONTS
|
||||
BuiltinRegisterFpeFunctions();
|
||||
BuiltinRegisterFpeFunctions();
|
||||
#else
|
||||
FontFileRegisterFpeFunctions();
|
||||
fs_register_fpe_functions();
|
||||
FontFileRegisterFpeFunctions();
|
||||
fs_register_fpe_functions();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
|
|
|
|||
|
|
@ -332,7 +332,6 @@ int main(int argc, char *argv[], char *envp[])
|
|||
SetInputCheck(&alwaysCheckForInput[0], &alwaysCheckForInput[1]);
|
||||
screenInfo.arraySize = MAXSCREENS;
|
||||
screenInfo.numScreens = 0;
|
||||
screenInfo.numVideoScreens = -1;
|
||||
WindowTable = (WindowPtr *)xalloc(MAXSCREENS * sizeof(WindowPtr));
|
||||
if (!WindowTable)
|
||||
FatalError("couldn't create root window table");
|
||||
|
|
@ -366,8 +365,6 @@ int main(int argc, char *argv[], char *envp[])
|
|||
|
||||
if (screenInfo.numScreens < 1)
|
||||
FatalError("no screens found");
|
||||
if (screenInfo.numVideoScreens < 0)
|
||||
screenInfo.numVideoScreens = screenInfo.numScreens;
|
||||
InitExtensions(argc, argv);
|
||||
if (!InitClientPrivates(serverClient))
|
||||
FatalError("failed to allocate serverClient devprivates");
|
||||
|
|
|
|||
|
|
@ -592,7 +592,7 @@ typedef struct _ScreenInfo {
|
|||
int arraySize;
|
||||
int numScreens;
|
||||
ScreenPtr screens[MAXSCREENS];
|
||||
int numVideoScreens;
|
||||
int unused;
|
||||
} ScreenInfo;
|
||||
|
||||
extern ScreenInfo screenInfo;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue