Lines Matching defs:se
98 xRRScreenChangeNotifyEvent se;
102 se.type = RRScreenChangeNotify + RREventBase;
103 se.rotation = (CARD8) (crtc ? crtc->rotation : RR_Rotate_0);
104 se.timestamp = pScrPriv->lastSetTime.milliseconds;
105 se.configTimestamp = pScrPriv->lastConfigTime.milliseconds;
106 se.root = pRoot->drawable.id;
107 se.window = pWin->drawable.id;
108 se.subpixelOrder = PictureGetSubpixelOrder (pScreen);
110 se.sizeID = RR10CurrentSizeID (pScreen);
112 if (se.rotation & (RR_Rotate_90 | RR_Rotate_270)) {
113 se.widthInPixels = pScreen->height;
114 se.heightInPixels = pScreen->width;
115 se.widthInMillimeters = pScreen->mmHeight;
116 se.heightInMillimeters = pScreen->mmWidth;
118 se.widthInPixels = pScreen->width;
119 se.heightInPixels = pScreen->height;
120 se.widthInMillimeters = pScreen->mmWidth;
121 se.heightInMillimeters = pScreen->mmHeight;
124 WriteEventsToClient (client, 1, (xEvent *) &se);