summaryrefslogtreecommitdiffstats
path: root/test/com
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-04-26 03:11:15 +0200
committerMichael Bien <[email protected]>2010-04-26 03:11:15 +0200
commit552a8d5d570a50829c7361dddcd35b2fe230c44e (patch)
treee9f4b17d68c1c7d00e3f75df7b7bce2311d9d7c8 /test/com
parent22cf865f702cac07a5059f45baace1d1caf5dfdb (diff)
continued with callbacks.
- started with context error callback - finished build program callback
Diffstat (limited to 'test/com')
-rw-r--r--test/com/jogamp/opencl/LowLevelBindingTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/com/jogamp/opencl/LowLevelBindingTest.java b/test/com/jogamp/opencl/LowLevelBindingTest.java
index f5b5a27b..eb1d7bd4 100644
--- a/test/com/jogamp/opencl/LowLevelBindingTest.java
+++ b/test/com/jogamp/opencl/LowLevelBindingTest.java
@@ -252,7 +252,7 @@ public class LowLevelBindingTest {
// tests if the callback is called
final CountDownLatch latch = new CountDownLatch(1);
BuildProgramCallback callback = new BuildProgramCallback() {
- public void buildProgramCallback(long cl_program) {
+ public void buildFinished(long cl_program) {
try{
assertEquals(program, cl_program);
}finally{