Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 0 additions & 6 deletions hw/xnest/Args.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ is" without express or implied warranty.
#include "Args.h"

char *xnestDisplayName = NULL;
Bool xnestFullGeneration = FALSE;
int xnestDefaultClass;
Bool xnestUserDefaultClass = FALSE;
int xnestDefaultDepth;
Expand Down Expand Up @@ -69,10 +68,6 @@ ddxProcessArgument(int argc, char *argv[], int i)
}
return 0;
}
if (!strcmp(argv[i], "-full")) {
xnestFullGeneration = TRUE;
return 1;
}
if (!strcmp(argv[i], "-class")) {
if (++i < argc) {
if (!strcmp(argv[i], "StaticGray")) {
Expand Down Expand Up @@ -182,7 +177,6 @@ void
ddxUseMsg(void)
{
ErrorF("-display string display name of the real server\n");
ErrorF("-full utilize full regeneration\n");
ErrorF("-class string default visual class\n");
ErrorF("-depth int default depth\n");
ErrorF("-sss use software screen saver\n");
Expand Down
1 change: 0 additions & 1 deletion hw/xnest/Args.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ is" without express or implied warranty.
#include <xcb/xcb.h>

extern char *xnestDisplayName;
extern Bool xnestFullGeneration;
extern int xnestDefaultClass;
extern Bool xnestUserDefaultClass;
extern int xnestDefaultDepth;
Expand Down
2 changes: 1 addition & 1 deletion hw/xnest/Init.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ InitOutput(int argc, char *argv[])

xnestNumScreens = screenInfo.numScreens;

xnestDoFullGeneration = xnestFullGeneration;
xnestDoFullGeneration = FALSE;
}

static void
Expand Down
14 changes: 0 additions & 14 deletions hw/xnest/man/Xnest.man
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,6 @@ This is a useful option for debugging, but it will slow down
performance considerably.
It should not be used unless absolutely necessary.
.TP
.B \-full
This option tells
.B Xnest
to utilize full regeneration of real server objects and reopen a new connection
to the real server each time the nested server regenerates.
The sample server implementation regenerates all objects in the server when the
last client of this server terminates.
When this happens,
.B Xnest
by default maintains the same top-level window and the same real server
connection in each new generation.
If the user selects full regeneration, even the top-level window and the
connection to the real server will be regenerated for each server generation.
.TP
.BI "\-class " string
This option specifies the default visual class of the nested server.
It is similar to the
Expand Down
Loading