Lines Matching defs:screen

82     public static D3DGraphicsDevice createDevice(int screen) {
87 ContextCapabilities d3dCaps = getDeviceCaps(screen);
92 "screen " + screen);
97 System.out.println("Direct3D pipeline enabled on screen " + screen);
100 D3DGraphicsDevice gd = new D3DGraphicsDevice(screen, d3dCaps);
104 private static native int getDeviceCapsNative(int screen);
105 private static native String getDeviceIdNative(int screen);
106 private static ContextCapabilities getDeviceCaps(final int screen) {
118 res.caps = getDeviceCapsNative(screen);
119 res.id = getDeviceIdNative(screen);
136 descString = "D3DGraphicsDevice[screen="+screennum;
176 private static native boolean enterFullScreenExclusiveNative(int screen,
180 protected void enterFullScreenExclusive(final int screen, WindowPeer wp)
195 fsStatus = enterFullScreenExclusiveNative(screen, hwnd);
202 super.enterFullScreenExclusive(screen, wp);
206 private static native boolean exitFullScreenExclusiveNative(int screen);
208 protected void exitFullScreenExclusive(final int screen, WindowPeer w) {
215 exitFullScreenExclusiveNative(screen);
222 super.exitFullScreenExclusive(screen, w);
227 * WindowAdapter class for the full-screen frame, responsible for
231 * operations (like when we disabled on-screen rendering).
233 * REMIND: we create an instance per each full-screen device while a single
250 // real toplevel to enter the full-screen mode with (4933099).
311 private static native DisplayMode getCurrentDisplayModeNative(int screen);
313 protected DisplayMode getCurrentDisplayMode(final int screen) {
323 res.dm = getCurrentDisplayModeNative(screen);
327 return super.getCurrentDisplayMode(screen);
334 private static native void configDisplayModeNative(int screen, long hwnd,
339 protected void configDisplayMode(final int screen, final WindowPeer w,
345 super.configDisplayMode(screen, w, width, height, bitDepth,
353 // the dimensions may be exceeding the dimensions of the screen,
374 configDisplayModeNative(screen, hwnd, width, height,
383 private static native void enumDisplayModesNative(int screen,
386 protected void enumDisplayModes(final int screen, final ArrayList modes) {
392 enumDisplayModesNative(screen, modes);
396 modes.add(getCurrentDisplayModeNative(screen));
403 private static native long getAvailableAcceleratedMemoryNative(int screen);
451 private static native boolean isD3DAvailableOnDeviceNative(int screen);
453 public static boolean isD3DAvailableOnDevice(final int screen) {
469 res.avail = isD3DAvailableOnDeviceNative(screen);