diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2010-01-27 17:12:12 -0800 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2010-01-30 14:30:40 -0800 |
commit | 15f4bb6dc64313ff100aa5444a94c60922a498df (patch) | |
tree | 5d3a4cc33466163303c5ea22e3dd1b3d6675b9e1 /hw/xquartz | |
parent | 7ba5de6e9e1e8efda9f79af601fb6269bae841ce (diff) |
XQuartz: Dead code removal
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'hw/xquartz')
-rw-r--r-- | hw/xquartz/darwin.c | 41 | ||||
-rw-r--r-- | hw/xquartz/darwin.h | 2 |
2 files changed, 1 insertions, 42 deletions
diff --git a/hw/xquartz/darwin.c b/hw/xquartz/darwin.c index 30b890589..3feacdc05 100644 --- a/hw/xquartz/darwin.c +++ b/hw/xquartz/darwin.c @@ -96,9 +96,7 @@ int darwinMainScreenX = 0; int darwinMainScreenY = 0; // parameters read from the command line or user preferences -unsigned int darwinDesiredWidth = 0, darwinDesiredHeight = 0; int darwinDesiredDepth = -1; -int darwinDesiredRefresh = -1; int darwinSyncKeymap = FALSE; // modifier masks for faking mouse buttons - ANY of these bits trigger it (not all) @@ -703,28 +701,10 @@ int ddxProcessArgument( int argc, char *argv[], int i ) return 1; } - if ( !strcmp( argv[i], "-size" ) ) { - if ( i >= argc-2 ) { - FatalError( "-size must be followed by two numbers\n" ); - } -#ifdef OLD_POWERBOOK_G3 - ErrorF( "Ignoring unsupported -size option on old PowerBook G3\n" ); -#else - darwinDesiredWidth = atoi( argv[i+1] ); - darwinDesiredHeight = atoi( argv[i+2] ); - ErrorF( "Attempting to use width x height = %i x %i\n", - darwinDesiredWidth, darwinDesiredHeight ); -#endif - return 3; - } - if ( !strcmp( argv[i], "-depth" ) ) { if ( i == argc-1 ) { FatalError( "-depth must be followed by a number\n" ); } -#ifdef OLD_POWERBOOK_G3 - ErrorF( "Ignoring unsupported -depth option on old PowerBook G3\n"); -#else darwinDesiredDepth = atoi( argv[i+1] ); if(darwinDesiredDepth != -1 && darwinDesiredDepth != 8 && @@ -734,20 +714,6 @@ int ddxProcessArgument( int argc, char *argv[], int i ) } ErrorF( "Attempting to use pixel depth of %i\n", darwinDesiredDepth ); -#endif - return 2; - } - - if ( !strcmp( argv[i], "-refresh" ) ) { - if ( i == argc-1 ) { - FatalError( "-refresh must be followed by a number\n" ); - } -#ifdef OLD_POWERBOOK_G3 - ErrorF( "Ignoring unsupported -refresh option on old PowerBook G3\n"); -#else - darwinDesiredRefresh = atoi( argv[i+1] ); - ErrorF( "Attempting to use refresh rate of %i\n", darwinDesiredRefresh ); -#endif return 2; } @@ -771,6 +737,7 @@ void ddxUseMsg( void ) ErrorF("\n"); ErrorF("Device Dependent Usage:\n"); ErrorF("\n"); + ErrorF("-depth <8,15,24> : use this bit depth.\n"); ErrorF("-fakebuttons : fake a three button mouse with Command and Option keys.\n"); ErrorF("-nofakebuttons : don't fake a three button mouse.\n"); ErrorF("-fakemouse2 <modifiers> : fake middle mouse button with modifier keys.\n"); @@ -778,12 +745,6 @@ void ddxUseMsg( void ) ErrorF(" ex: -fakemouse2 \"option,shift\" = option-shift-click is middle button.\n"); ErrorF("-version : show the server version.\n"); ErrorF("\n"); - ErrorF("\n"); - ErrorF("Options ignored in rootless mode:\n"); - ErrorF("-size <height> <width> : use a screen resolution of <height> x <width>.\n"); - ErrorF("-depth <8,15,24> : use this bit depth.\n"); - ErrorF("-refresh <rate> : use a monitor refresh rate of <rate> Hz.\n"); - ErrorF("\n"); } diff --git a/hw/xquartz/darwin.h b/hw/xquartz/darwin.h index 586044fba..8fa48bfeb 100644 --- a/hw/xquartz/darwin.h +++ b/hw/xquartz/darwin.h @@ -70,9 +70,7 @@ extern int darwinFakeMouse3Mask; extern unsigned int darwinAppKitModMask; extern unsigned int windowItemModMask; extern int darwinSyncKeymap; -extern unsigned int darwinDesiredWidth, darwinDesiredHeight; extern int darwinDesiredDepth; -extern int darwinDesiredRefresh; // location of X11's (0,0) point in global screen coordinates extern int darwinMainScreenX; |