Lines Matching refs:dmxScreen

205     DMXScreenInfo *dmxScreen;  in dmxConfigAddDisplay()  local
213 dmxScreen = &dmxScreens[dmxNumScreens]; in dmxConfigAddDisplay()
214 memset(dmxScreen, 0, sizeof(*dmxScreen)); in dmxConfigAddDisplay()
215 dmxScreen->name = name; in dmxConfigAddDisplay()
216 dmxScreen->index = dmxNumScreens; in dmxConfigAddDisplay()
217 dmxScreen->scrnWidth = scrnWidth; in dmxConfigAddDisplay()
218 dmxScreen->scrnHeight = scrnHeight; in dmxConfigAddDisplay()
219 dmxScreen->scrnX = scrnX; in dmxConfigAddDisplay()
220 dmxScreen->scrnY = scrnY; in dmxConfigAddDisplay()
221 dmxScreen->scrnXSign = scrnXSign; in dmxConfigAddDisplay()
222 dmxScreen->scrnYSign = scrnYSign; in dmxConfigAddDisplay()
223 dmxScreen->rootWidth = rootWidth; in dmxConfigAddDisplay()
224 dmxScreen->rootHeight = rootHeight; in dmxConfigAddDisplay()
225 dmxScreen->rootX = rootX; in dmxConfigAddDisplay()
226 dmxScreen->rootY = rootY; in dmxConfigAddDisplay()
227 dmxScreen->stat = dmxStatAlloc(); in dmxConfigAddDisplay()
229 return dmxScreen; in dmxConfigAddDisplay()
257 DMXScreenInfo *dmxScreen; in dmxConfigCopyFromDisplay() local
259 dmxScreen = dmxConfigAddDisplay(d->name, in dmxConfigCopyFromDisplay()
266 dmxScreen->where = PosAbsolute; in dmxConfigCopyFromDisplay()
267 dmxScreen->whereX = d->rootXOrigin; in dmxConfigCopyFromDisplay()
268 dmxScreen->whereY = d->rootYOrigin; in dmxConfigCopyFromDisplay()
275 DMXScreenInfo *dmxScreen; in dmxConfigCopyFromWall() local
288 dmxScreen = dmxConfigAddDisplay(pt->string, w->width, w->height, in dmxConfigCopyFromWall()
291 dmxScreen->where = PosAbsolute; in dmxConfigCopyFromWall()
292 dmxScreen->whereX = 0; in dmxConfigCopyFromWall()
293 dmxScreen->whereY = 0; in dmxConfigCopyFromWall()
297 dmxScreen->where = PosBelow; in dmxConfigCopyFromWall()
298 dmxScreen->whereRefScreen = edge; in dmxConfigCopyFromWall()
302 dmxScreen->where = PosRightOf; in dmxConfigCopyFromWall()
303 dmxScreen->whereRefScreen = last; in dmxConfigCopyFromWall()
308 dmxScreen->where = PosRightOf; in dmxConfigCopyFromWall()
309 dmxScreen->whereRefScreen = edge; in dmxConfigCopyFromWall()
313 dmxScreen->where = PosBelow; in dmxConfigCopyFromWall()
314 dmxScreen->whereRefScreen = last; in dmxConfigCopyFromWall()
319 if (dmxScreen->where == PosAbsolute) in dmxConfigCopyFromWall()
321 pt->string, dmxScreen->whereX, dmxScreen->whereY); in dmxConfigCopyFromWall()
325 dmxScreen->where == PosBelow ? "below" : "right of", in dmxConfigCopyFromWall()
326 dmxScreens[dmxScreen->whereRefScreen].name); in dmxConfigCopyFromWall()
417 DMXScreenInfo *dmxScreen = dmxConfigAddDisplay(pt->name, in dmxConfigFromCommandLine() local
422 dmxScreen->where = PosAbsolute; in dmxConfigFromCommandLine()
423 dmxScreen->whereX = 0; in dmxConfigFromCommandLine()
424 dmxScreen->whereY = 0; in dmxConfigFromCommandLine()
426 dmxScreen->name, dmxScreen->whereX, dmxScreen->whereY); in dmxConfigFromCommandLine()
429 dmxScreen->where = PosRightOf; in dmxConfigFromCommandLine()
430 dmxScreen->whereRefScreen = dmxNumScreens - 2; in dmxConfigFromCommandLine()
431 if (dmxScreen->whereRefScreen < 0) in dmxConfigFromCommandLine()
432 dmxScreen->whereRefScreen = 0; in dmxConfigFromCommandLine()
434 dmxScreen->name, in dmxConfigFromCommandLine()
435 dmxScreen->where == PosBelow ? "below" : "right of", in dmxConfigFromCommandLine()
436 dmxScreens[dmxScreen->whereRefScreen].name); in dmxConfigFromCommandLine()