aboutsummaryrefslogtreecommitdiffstats
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/com/jogamp/opengl/test/android/NEWTGearsES2TransActivity.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/android/NEWTGearsES2TransActivity.java b/src/test/com/jogamp/opengl/test/android/NEWTGearsES2TransActivity.java
index 1862b1ba1..84ff0a5a7 100644
--- a/src/test/com/jogamp/opengl/test/android/NEWTGearsES2TransActivity.java
+++ b/src/test/com/jogamp/opengl/test/android/NEWTGearsES2TransActivity.java
@@ -55,7 +55,9 @@ public class NEWTGearsES2TransActivity extends NewtBaseActivity {
caps.setBackgroundOpaque(false);
Log.d(TAG, "req caps: "+caps);
GLWindow glWindow = GLWindow.create(caps);
- glWindow.setFullscreen(true);
+ glWindow.setSize(300, 300);
+ // glWindow.setFullscreen(true);
+ glWindow.setUndecorated(true);
setContentView(getWindow(), glWindow);
glWindow.addGLEventListener(new GearsES2(1));