aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/CLProgram.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2009-10-20 00:53:50 +0200
committerMichael Bien <[email protected]>2009-10-20 00:53:50 +0200
commit7f2db980b303fa75f3830679ce65fe4ae41c30dc (patch)
treea22f4ad2a068ff0816ebc2a4ca71bb2426ee46e4 /src/com/mbien/opencl/CLProgram.java
parent224985638b2a1486e4b7da1642a4f2cc22fc8644 (diff)
added CLCommandQueue to CLContext's resource management code, minor fixes...
Diffstat (limited to 'src/com/mbien/opencl/CLProgram.java')
-rw-r--r--src/com/mbien/opencl/CLProgram.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/mbien/opencl/CLProgram.java b/src/com/mbien/opencl/CLProgram.java
index 0404e070..020de17c 100644
--- a/src/com/mbien/opencl/CLProgram.java
+++ b/src/com/mbien/opencl/CLProgram.java
@@ -140,8 +140,8 @@ public class CLProgram {
}
int ret = cl.clReleaseProgram(ID);
- checkForError(ret, "can not release program");
context.programReleased(this);
+ checkForError(ret, "can not release program");
}