summaryrefslogtreecommitdiff
path: root/randr
diff options
context:
space:
mode:
authorAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2004-06-25 08:56:04 +0000
committerAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2004-06-25 08:56:04 +0000
commitc5ab3fdd928d12b4dc28108f2242b3b75e1ac65f (patch)
treec12a27452e02e9176d525bca16d9090856589e4f /randr
parentf8226cee08a00b49f32dc3db814478490febe45d (diff)
#Bug 780: add RRSetScreenConfig
Diffstat (limited to 'randr')
-rw-r--r--randr/randr.c105
-rw-r--r--randr/randrstr.h8
2 files changed, 111 insertions, 2 deletions
diff --git a/randr/randr.c b/randr/randr.c
index b253ddbab..1108d221a 100644
--- a/randr/randr.c
+++ b/randr/randr.c
@@ -719,7 +719,7 @@ ProcRRSetScreenConfig (ClientPtr client)
pScreen = pDraw->pScreen;
- pScrPriv= rrGetScrPriv(pScreen);
+ pScrPriv = rrGetScrPriv(pScreen);
time = ClientTimeToServerTime(stuff->timestamp);
configTime = ClientTimeToServerTime(stuff->configTimestamp);
@@ -900,6 +900,109 @@ sendReply:
return (client->noClientException);
}
+int
+RRSetScreenConfig (ScreenPtr pScreen,
+ Rotation rotation,
+ int rate,
+ RRScreenSizePtr pSize)
+{
+ rrScrPrivPtr pScrPriv;
+ int i;
+ short oldWidth, oldHeight;
+
+ pScrPriv = rrGetScrPriv(pScreen);
+
+ oldWidth = pScreen->width;
+ oldHeight = pScreen->height;
+
+ if (!RRGetInfo (pScreen))
+ return BadAlloc;
+
+ /*
+ * Validate requested rotation
+ */
+
+ /* test the rotation bits only! */
+ switch (rotation & 0xf) {
+ case RR_Rotate_0:
+ case RR_Rotate_90:
+ case RR_Rotate_180:
+ case RR_Rotate_270:
+ break;
+ default:
+ /*
+ * Invalid rotation
+ */
+ return BadValue;
+ }
+
+ if ((~pScrPriv->rotations) & rotation)
+ {
+ /*
+ * requested rotation or reflection not supported by screen
+ */
+ return BadMatch;
+ }
+
+ /*
+ * Validate requested refresh
+ */
+ if (rate)
+ {
+ for (i = 0; i < pSize->nRates; i++)
+ {
+ RRScreenRatePtr pRate = &pSize->pRates[i];
+ if (pRate->referenced && pRate->rate == rate)
+ break;
+ }
+ if (i == pSize->nRates)
+ {
+ /*
+ * Invalid rate
+ */
+ return BadValue;
+ }
+ }
+
+ /*
+ * call out to ddx routine to effect the change
+ */
+ if (!(*pScrPriv->rrSetConfig) (pScreen, rotation, rate,
+ pSize))
+ {
+ /*
+ * unknown DDX failure, report to client
+ */
+ return BadImplementation;
+ }
+
+ /*
+ * set current extension configuration pointers
+ */
+ RRSetCurrentConfig (pScreen, rotation, rate, pSize);
+
+ /*
+ * Deliver ScreenChangeNotify events whenever
+ * the configuration is updated
+ */
+ WalkTree (pScreen, TellChanged, (pointer) pScreen);
+
+ /*
+ * Deliver ConfigureNotify events when root changes
+ * pixel size
+ */
+ if (oldWidth != pScreen->width || oldHeight != pScreen->height)
+ RRSendConfigNotify (pScreen);
+ RREditConnectionInfo (pScreen);
+
+ /*
+ * Fix pointer bounds and location
+ */
+ ScreenRestructured (pScreen);
+
+ return Success;
+}
+
static int
ProcRRSelectInput (ClientPtr client)
{
diff --git a/randr/randrstr.h b/randr/randrstr.h
index 48213185c..455de206d 100644
--- a/randr/randrstr.h
+++ b/randr/randrstr.h
@@ -113,7 +113,13 @@ RRSetCurrentConfig (ScreenPtr pScreen,
RRScreenSizePtr pSize);
Bool RRScreenInit(ScreenPtr pScreen);
-
+
+int
+RRSetScreenConfig (ScreenPtr pScreen,
+ Rotation rotation,
+ int rate,
+ RRScreenSizePtr pSize);
+
Bool
miRandRInit (ScreenPtr pScreen);