diff options
author | Michael Bien <[email protected]> | 2010-02-13 16:20:34 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-02-13 16:20:34 +0100 |
commit | 62d9a63caad9d614a4a4ca90956b38ff623242a5 (patch) | |
tree | e90d8726cbd815bc7bfadea1c91ac4f6cb63bbd4 /src/com/mbien/opencl/CLMemory.java | |
parent | a93e4532f9515f5b2c0d2c67a45db1236a29ab12 (diff) |
added a few tests for event profiling and enums.
fixed bug in LocalMemType and Mem enum valueOf(int foo) methods.
Diffstat (limited to 'src/com/mbien/opencl/CLMemory.java')
-rw-r--r-- | src/com/mbien/opencl/CLMemory.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/mbien/opencl/CLMemory.java b/src/com/mbien/opencl/CLMemory.java index 2b7e847a..296f16f5 100644 --- a/src/com/mbien/opencl/CLMemory.java +++ b/src/com/mbien/opencl/CLMemory.java @@ -202,6 +202,8 @@ public abstract class CLMemory <B extends Buffer> implements CLResource { return Mem.READ_WRITE; case CL_MEM_READ_ONLY: return Mem.READ_ONLY; + case CL_MEM_WRITE_ONLY: + return Mem.WRITE_ONLY; case CL_MEM_USE_HOST_PTR: return Mem.USE_BUFFER; case(CL_MEM_ALLOC_HOST_PTR): |