Lines Matching defs:paScreenInformation

83     struct screenInformation *paScreenInformation;
144 pState->paScreenInformation = NULL;
155 pState->paScreenInformation =
156 (struct screenInformation *)RTMemRealloc(pState->paScreenInformation,
157 (iDisplay + 1) * sizeof(*pState->paScreenInformation));
158 if (!pState->paScreenInformation)
161 RT_ZERO(pState->paScreenInformation[i]);
164 pState->paScreenInformation[iDisplay].cx = cx;
165 pState->paScreenInformation[iDisplay].cy = cy;
166 pState->paScreenInformation[iDisplay].cBPP = cBPP;
167 pState->paScreenInformation[iDisplay].x = x;
168 pState->paScreenInformation[iDisplay].y = y;
169 pState->paScreenInformation[iDisplay].fEnabled = fEnabled;
170 pState->paScreenInformation[iDisplay].fUpdateSize = true;
171 pState->paScreenInformation[iDisplay].fUpdatePosition = fUpdatePosition;
183 if ( pState->paScreenInformation[i].fEnabled
184 && pState->paScreenInformation[i].cx != 0 && pState->paScreenInformation[i].cy != 0)
185 paSizeHints[i] = (pState->paScreenInformation[i].cx & 0x8fff) << 16 | (pState->paScreenInformation[i].cy & 0x8fff);
186 else if (pState->paScreenInformation[i].cx != 0 && pState->paScreenInformation[i].cy != 0)
205 if (pState->paScreenInformation[i].fUpdateSize)
207 if ( !pState->fHaveRandR12 && pState->paScreenInformation[0].fUpdateSize
208 && pState->paScreenInformation[0].cx > 0 && pState->paScreenInformation[0].cy > 0)
211 pState->pcszXrandr, pState->paScreenInformation[0].cx, pState->paScreenInformation[0].cy);
213 pState->paScreenInformation[0].fUpdateSize = false;
218 if (pState->paScreenInformation[i].fUpdateSize)
223 if (pState->paScreenInformation[i].fUpdatePosition)
226 pState->pcszXrandr, i, pState->paScreenInformation[i].x, pState->paScreenInformation[i].y);
229 pState->paScreenInformation[i].fUpdateSize = pState->paScreenInformation[i].fUpdatePosition = false;
254 pState->paScreenInformation[i].fUpdateSize = true;
256 pState->paScreenInformation[0].fUpdateSize = true;