Lines Matching defs:scr
26 static void init_def_vscreen(ScreenInfo *scr)
32 vs->w = scr->rootw;
33 vs->h = scr->rooth;
34 vs->window = scr->Root;
37 scr->vScreenList = vs;
38 scr->currentvs = vs;
40 scr->numVscreens = 1;
46 void InitVirtualScreens(ScreenInfo *scr)
50 init_def_vscreen(scr);
63 if(scr->VirtualScreens == NULL) {
64 init_def_vscreen(scr);
67 scr->numVscreens = 0;
79 scr->vScreenList = NULL;
88 if((x < 0) || (y < 0) || (w > scr->rootw) || (h > scr->rooth)) {
107 vs->next = scr->vScreenList;
108 scr->vScreenList = vs;
119 if(scr->vScreenList == NULL) {
123 /* Setup scr->{currentvs,Root{,x,y,w,h}} as if the
128 vs00 = scr->vScreenList;