diff options
author | Keith Packard <keithp@neko.keithp.com> | 2006-11-30 21:56:59 -0800 |
---|---|---|
committer | Keith Packard <keithp@neko.keithp.com> | 2006-11-30 21:56:59 -0800 |
commit | 370fa28a6afd70ec91411edf1413c0e448ae45b6 (patch) | |
tree | a45560c98ad4bc79331ffbbc2321e9d1e62c9ced /include | |
parent | 0dba1be7969aa56f934d93889cbd589b3dafd3d4 (diff) |
Add initial implementation of crtc gamma and mode adding requests.randr-1.2
They build. More testing seems indicated.
Diffstat (limited to 'include')
-rw-r--r-- | include/X11/extensions/Xrandr.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/X11/extensions/Xrandr.h b/include/X11/extensions/Xrandr.h index bd64e84..448c32d 100644 --- a/include/X11/extensions/Xrandr.h +++ b/include/X11/extensions/Xrandr.h @@ -353,10 +353,10 @@ int XRRGetCrtcGammaSize (Display *dpy, RRCrtc crtc); typedef struct _XRRCrtcGamma { - int size; - CARD16 *red; - CARD16 *green; - CARD16 *blue; + int size; + unsigned short *red; + unsigned short *green; + unsigned short *blue; } XRRCrtcGamma; XRRCrtcGamma * |