diff options
author | Keith Packard <keithp@mandolin.keithp.com> | 2006-11-01 00:25:45 -0800 |
---|---|---|
committer | Keith Packard <keithp@mandolin.keithp.com> | 2006-11-01 00:25:45 -0800 |
commit | 6676505b6012c97d2f711a84237fa14a62d1d33d (patch) | |
tree | f84de4eab5383eab2df021883e6e7a822d768f2b /include | |
parent | ab4207db14d70384f017cc2a22379d7c358b60e0 (diff) |
Moving physical size from mode to output.
Follows protocol change which places physical size
information in the output rather than (inappropriately)
in each mode line.
Diffstat (limited to 'include')
-rw-r--r-- | include/X11/extensions/Xrandr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/X11/extensions/Xrandr.h b/include/X11/extensions/Xrandr.h index 418e97c..de0739d 100644 --- a/include/X11/extensions/Xrandr.h +++ b/include/X11/extensions/Xrandr.h @@ -212,8 +212,6 @@ typedef struct _XRRModeInfo { RRMode id; unsigned int width; unsigned int height; - unsigned long mmWidth; - unsigned long mmHeight; unsigned long dotClock; unsigned int hSyncStart; unsigned int hSyncEnd; @@ -255,6 +253,8 @@ typedef struct _XRROutputInfo { char *name; int nameLen; XRROutputOptions current_options; + unsigned long mm_width; + unsigned long mm_height; Connection connection; SubpixelOrder subpixel_order; XRROutputOptions possible_options; |