summaryrefslogtreecommitdiffstats
path: root/src/newt/native/X11Window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/newt/native/X11Window.c')
-rw-r--r--src/newt/native/X11Window.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/newt/native/X11Window.c b/src/newt/native/X11Window.c
index fcdd28305..28806b652 100644
--- a/src/newt/native/X11Window.c
+++ b/src/newt/native/X11Window.c
@@ -1159,6 +1159,8 @@ JNIEXPORT jint JNICALL Java_jogamp_newt_driver_x11_X11Screen_getNumScreenModeRes
int num_sizes;
XRRScreenSize *xrrs = XRRSizes(dpy, (int)scrn_idx, &num_sizes); //get possible screen resolutions
+ DBG_PRINT("getNumScreenModeResolutions0: %d\n", num_sizes);
+
return num_sizes;
}
@@ -1272,6 +1274,8 @@ JNIEXPORT jint JNICALL Java_jogamp_newt_driver_x11_X11Screen_getCurrentScreenRat
//free
XRRFreeScreenConfigInfo(conf);
+ DBG_PRINT("getCurrentScreenRate0: %d\n", (int)original_rate);
+
return (jint) original_rate;
}
@@ -1330,6 +1334,7 @@ JNIEXPORT jint JNICALL Java_jogamp_newt_driver_x11_X11Screen_getCurrentScreenRes
//free
XRRFreeScreenConfigInfo(conf);
+ DBG_PRINT("getCurrentScreenResolutionIndex0: %d\n", (int)original_size_id);
return (jint)original_size_id;
}