Home | History | Annotate | Download | only in libGL

Lines Matching refs:displayId

34 Display *Display::getDisplay(NativeDisplayType displayId)
36 if(displays.find(displayId) != displays.end())
38 return displays[displayId];
41 // FIXME: Check if displayId is a valid display device context
42 Display *display = new Display(displayId);
44 displays[displayId] = display;
48 Display::Display(NativeDisplayType displayId) : displayId(displayId)
58 displays.erase(displayId);
169 Status status = XGetWindowAttributes(displayId, window, &windowAttributes);
189 Surface *surface = new Surface(this, WindowFromDC(displayId));
207 return displayId;
232 Screen *screen = XDefaultScreenOfDisplay(displayId);