Lines Matching defs:screen

47  * X11 screen.
56 int screen;
67 this.screen = screennum;
83 * Returns the X11 screen of the device.
86 return screen;
122 return ":0."+screen;
146 int num = getNumConfigs(screen);
161 getDoubleBufferVisuals(screen);
164 int visNum = getConfigVisualId(i, screen);
165 int depth = getConfigDepth (i, screen);
175 ret[i] = XRGraphicsConfig.getConfig(this, visNum, depth, getConfigColormap(i, screen),
179 getConfigColormap(i, screen),
192 public native int getNumConfigs(int screen);
197 public native int getConfigVisualId (int index, int screen);
201 public native int getConfigDepth (int index, int screen);
206 public native int getConfigColormap (int index, int screen);
216 private native void getDoubleBufferVisuals(int screen);
233 int visNum = getConfigVisualId(0, screen);
242 System.out.println(" for default config on screen " +
243 screen);
247 int depth = getConfigDepth(0, screen);
251 getDoubleBufferVisuals(screen);
261 depth, getConfigColormap(0, screen),
265 depth, getConfigColormap(0, screen),
275 private static native DisplayMode getCurrentDisplayMode(int screen);
276 private static native void enumDisplayModes(int screen,
278 private static native void configDisplayMode(int screen,
281 private static native void resetNativeData(int screen);
300 // on the primary screen; we could change this behavior slightly
301 // in the future by allowing only one screen to be in fullscreen
303 boolean fsAvailable = (screen == 0) && isXrandrExtensionSupported();
380 return getCurrentDisplayMode(screen);
395 enumDisplayModes(screen, modes);
443 Thread t = new Thread(mainTG, r,"Display-Change-Shutdown-Thread-"+screen);
453 configDisplayMode(screen,
497 resetNativeData(screen);
499 // pass on to all top-level windows on this screen
527 return ("X11GraphicsDevice[screen="+screen+"]");