From 3b3dc4591d3690f61b9488ed74e7c9248def1fd5 Mon Sep 17 00:00:00 2001
From: Michael Bien <mbien@fh-landshut.de>
Date: Sun, 2 May 2010 22:55:02 +0200
Subject: CLBuildListener functionality for high level bindings. - uses low
 level BuildProgramCallback internally - updated tests, testing async builds

---
 src/com/jogamp/opencl/CLProgramBuilder.java | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

(limited to 'src/com/jogamp/opencl/CLProgramBuilder.java')

diff --git a/src/com/jogamp/opencl/CLProgramBuilder.java b/src/com/jogamp/opencl/CLProgramBuilder.java
index 855d9837..e9440755 100644
--- a/src/com/jogamp/opencl/CLProgramBuilder.java
+++ b/src/com/jogamp/opencl/CLProgramBuilder.java
@@ -1,6 +1,7 @@
 package com.jogamp.opencl;
 
 import com.jogamp.opencl.util.CLBuildConfiguration;
+import com.jogamp.opencl.util.CLBuildListener;
 import com.jogamp.opencl.util.CLProgramConfiguration;
 import java.io.IOException;
 import java.io.ObjectInputStream;
@@ -178,11 +179,21 @@ public final class CLProgramBuilder implements CLProgramConfiguration, Serializa
 
     @Override
     public CLProgram build() {
-        return build(program);
+        return build(program, null);
+    }
+
+    @Override
+    public CLProgram build(CLBuildListener listener) {
+        return build(program, listener);
     }
 
     @Override
     public CLProgram build(CLProgram program) {
+        return build(program, null);
+    }
+    
+    @Override
+    public CLProgram build(CLProgram program, CLBuildListener listener) {
         if(program == null) {
             throw new NullPointerException("no program has been set");
         }
@@ -191,7 +202,7 @@ public final class CLProgramBuilder implements CLProgramConfiguration, Serializa
         setup.addAll(defineSet);
         String options = CLProgram.optionsOf(setup.toArray(new String[setup.size()]));
         CLDevice[] devices = binariesMap.keySet().toArray(new CLDevice[binariesMap.size()]);
-        return program.build(options, devices);
+        return program.build(listener, options, devices);
     }
 
     @Override
-- 
cgit v1.2.3