From d40f97c1ecb7de88e6093f54aa9d38e23b091be0 Mon Sep 17 00:00:00 2001 From: Michael Bien Date: Sun, 21 Nov 2010 21:22:39 +0100 Subject: CLGLContext.create() no longer makes the glcontext current. --- test/com/jogamp/opencl/gl/CLGLTest.java | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'test/com') diff --git a/test/com/jogamp/opencl/gl/CLGLTest.java b/test/com/jogamp/opencl/gl/CLGLTest.java index a647c19f..27c2425c 100644 --- a/test/com/jogamp/opencl/gl/CLGLTest.java +++ b/test/com/jogamp/opencl/gl/CLGLTest.java @@ -68,16 +68,6 @@ public class CLGLTest { out.println(glcontext); } -// @AfterClass - public static void release() { - if(glcontext != null) { - glcontext.destroy(); - glcontext = null; - } - glWindow.destroy(); -// window.destroy(); - } - @Test public void createContextTest() { @@ -101,11 +91,14 @@ public class CLGLTest { out.println("isGLMemorySharingSupported==true on: \n "+device); } - assertNotNull(glcontext); out.println(device.getPlatform()); + + assertNotNull(glcontext); + glcontext.makeCurrent(); + assertTrue(glcontext.isCurrent()); + CLContext context = CLGLContext.create(glcontext, device); assertNotNull(context); - assertTrue(glcontext.isCurrent()); try{ out.println(context); @@ -115,10 +108,13 @@ public class CLGLTest { out.println(currentDevice); */ }finally{ + // destroy cl context, gl context still current context.release(); + + glcontext.release(); + glWindow.destroy(); } - release(); } -- cgit v1.2.3