diff options
author | Michael Bien <[email protected]> | 2010-03-08 17:08:03 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-08 17:08:03 +0100 |
commit | e081f13ca50353a7a9c34438a2f81d38e03e88a7 (patch) | |
tree | 7948e78a8e73fb4de5340a80075d35a8a1499c1f /src/com/mbien/opencl/CLContext.java | |
parent | 5ad19147a76f80635dcae18693929edbf1da2cbf (diff) |
introduced gl package and moved all interoperability functionality into it.
Diffstat (limited to 'src/com/mbien/opencl/CLContext.java')
-rw-r--r-- | src/com/mbien/opencl/CLContext.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/mbien/opencl/CLContext.java b/src/com/mbien/opencl/CLContext.java index 6b09cc37..2698a934 100644 --- a/src/com/mbien/opencl/CLContext.java +++ b/src/com/mbien/opencl/CLContext.java @@ -382,6 +382,10 @@ public class CLContext extends CLObject implements CLResource { release(); } + protected void overrideContext(CLDevice device) { + device.setContext(this); + } + /** * Returns the CLPlatform this context is running on. */ |