diff options
author | Keith Packard <keithp@guitar.keithp.com> | 2006-09-19 00:46:27 -0700 |
---|---|---|
committer | Keith Packard <keithp@guitar.keithp.com> | 2006-09-19 00:46:27 -0700 |
commit | 07112adb0802d28488de5a495aa61bb3cfc280b6 (patch) | |
tree | c181059f543a98c5f34becc171da8deae9485166 /randr/rroutput.c | |
parent | afe5e9483b352ed06075ed68a6ffa50799194e2d (diff) |
RRGetScreenResources and RRGetOutputInfo are working now.
Removed separate id field in RRModeRec.
Pull screen subpixel order from Render extension.
Implement RGetScreenResources and RRGetOutputInfo
Diffstat (limited to 'randr/rroutput.c')
-rw-r--r-- | randr/rroutput.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/randr/rroutput.c b/randr/rroutput.c index ba5bcb451..478002300 100644 --- a/randr/rroutput.c +++ b/randr/rroutput.c @@ -154,6 +154,15 @@ RROutputSetConnection (RROutputPtr output, return TRUE; } +Bool +RROutputSetSubpixelOrder (RROutputPtr output, + int subpixelOrder) +{ + output->subpixelOrder = subpixelOrder; + output->changed = TRUE; + return TRUE; +} + void RRDeliverOutputEvent(ClientPtr client, WindowPtr pWin, RROutputPtr output) { |