diff options
Diffstat (limited to 'src/nativewindow')
3 files changed, 23 insertions, 12 deletions
diff --git a/src/nativewindow/classes/jogamp/nativewindow/ios/IOSDummyUpstreamSurfaceHook.java b/src/nativewindow/classes/jogamp/nativewindow/ios/IOSDummyUpstreamSurfaceHook.java index a61287f8b..079f6c5a8 100644 --- a/src/nativewindow/classes/jogamp/nativewindow/ios/IOSDummyUpstreamSurfaceHook.java +++ b/src/nativewindow/classes/jogamp/nativewindow/ios/IOSDummyUpstreamSurfaceHook.java @@ -53,7 +53,7 @@ public class IOSDummyUpstreamSurfaceHook extends UpstreamSurfaceHookMutableSize @Override public final void create(final ProxySurface s) { if(0 == uiWindow && 0 == s.getSurfaceHandle()) { - uiWindow = IOSUtil.CreateUIWindow(0, 0, 64, 64); + uiWindow = IOSUtil.CreateUIWindow(0, 0, 64, 64, false); if(0 == uiWindow) { throw new NativeWindowException("Error UI window 0"); } diff --git a/src/nativewindow/classes/jogamp/nativewindow/ios/IOSUtil.java b/src/nativewindow/classes/jogamp/nativewindow/ios/IOSUtil.java index 7100cb0b5..4790f21da 100644 --- a/src/nativewindow/classes/jogamp/nativewindow/ios/IOSUtil.java +++ b/src/nativewindow/classes/jogamp/nativewindow/ios/IOSUtil.java @@ -130,12 +130,12 @@ public class IOSUtil implements ToolkitProperties { } } - public static long CreateUIWindow(final int x, final int y, final int width, final int height) { + public static long CreateUIWindow(final int x, final int y, final int width, final int height, final boolean visible) { final long res[] = { 0 }; RunOnMainThread(true, false /* kickNSApp */, new Runnable() { @Override public void run() { - res[0] = CreateUIWindow0(x, y, width, height); + res[0] = CreateUIWindow0(x, y, width, height, visible); } } ); return res[0]; } @@ -312,7 +312,7 @@ public class IOSUtil implements ToolkitProperties { private static native Object GetInsets0(long windowOrView); private static native float GetScreenPixelScale1(int screenIdx); private static native float GetScreenPixelScale2(long windowOrView); - private static native long CreateUIWindow0(int x, int y, int width, int height); + private static native long CreateUIWindow0(int x, int y, int width, int height, boolean visible); private static native void DestroyUIWindow0(long uiWindow); private static native long GetCALayer0(long uiView); private static native long GetCAEAGLLayer0(long uiView); diff --git a/src/nativewindow/native/ios/IOSmisc.m b/src/nativewindow/native/ios/IOSmisc.m index 1983143df..9a1bbfd7f 100644 --- a/src/nativewindow/native/ios/IOSmisc.m +++ b/src/nativewindow/native/ios/IOSmisc.m @@ -315,7 +315,7 @@ JNIEXPORT jfloat JNICALL Java_jogamp_nativewindow_ios_IOSUtil_GetScreenPixelScal * Signature: (IIIIZ)J */ JNIEXPORT jlong JNICALL Java_jogamp_nativewindow_ios_IOSUtil_CreateUIWindow0 - (JNIEnv *env, jclass unused, jint x, jint y, jint width, jint height) + (JNIEnv *env, jclass unused, jint x, jint y, jint width, jint height, jboolean visible) { NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]; [CATransaction begin]; @@ -325,22 +325,33 @@ JNIEXPORT jlong JNICALL Java_jogamp_nativewindow_ios_IOSUtil_CreateUIWindow0 // Allocate the window UIWindow *myWindow = [[[[UIWindow alloc] initWithFrame:boundsWin] autorelease] retain]; myWindow.rootViewController = [[[UIViewController alloc] initWithNibName:nil bundle:nil] autorelease]; +#ifdef VERBOSE_ON [myWindow setBackgroundColor: [UIColor redColor]]; +#endif // n/a iOS [myWindow setPreservesContentDuringLiveResize: YES]; - // FIXME invisible .. (we keep it visible for testing) - // FIXME [myWindow setOpaque: NO]; - // FIXME [myWindow setBackgroundColor: [UIColor clearColor]]; - [myWindow makeKeyAndVisible]; - + if( visible) { + [myWindow setOpaque: YES]; + [myWindow makeKeyAndVisible]; + } else { + [myWindow setOpaque: NO]; + [myWindow setBackgroundColor: [UIColor clearColor]]; + } CAEAGLUIView *uiView = [[CAEAGLUIView alloc] initWithFrame:boundsView]; CAEAGLLayer* l = (CAEAGLLayer*)[uiView layer]; - [l setOpaque: YES]; + if( visible ) { + [uiView setOpaque: YES]; + [l setOpaque: YES]; + } else { + [uiView setOpaque: NO]; + [uiView setBackgroundColor: [UIColor clearColor]]; + [l setOpaque: NO]; + [l setBackgroundColor: [UIColor clearColor]]; + } l.drawableProperties = [NSDictionary dictionaryWithObjectsAndKeys: /* defaults */ [NSNumber numberWithBool:NO], kEAGLDrawablePropertyRetainedBacking, kEAGLColorFormatRGBA8, kEAGLDrawablePropertyColorFormat, nil]; - [myWindow addSubview: uiView]; [CATransaction commit]; |