summaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/CLInfoAccessor.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-03-08 17:08:03 +0100
committerMichael Bien <[email protected]>2010-03-08 17:08:03 +0100
commite081f13ca50353a7a9c34438a2f81d38e03e88a7 (patch)
tree7948e78a8e73fb4de5340a80075d35a8a1499c1f /src/com/mbien/opencl/CLInfoAccessor.java
parent5ad19147a76f80635dcae18693929edbf1da2cbf (diff)
introduced gl package and moved all interoperability functionality into it.
Diffstat (limited to 'src/com/mbien/opencl/CLInfoAccessor.java')
-rw-r--r--src/com/mbien/opencl/CLInfoAccessor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/mbien/opencl/CLInfoAccessor.java b/src/com/mbien/opencl/CLInfoAccessor.java
index 316c1257..554545b9 100644
--- a/src/com/mbien/opencl/CLInfoAccessor.java
+++ b/src/com/mbien/opencl/CLInfoAccessor.java
@@ -32,7 +32,7 @@ abstract class CLInfoAccessor {
};
- final long getLong(int key) {
+ public final long getLong(int key) {
ByteBuffer buffer = localBB.get();
int ret = getInfo(key, 8, buffer, null);
@@ -41,7 +41,7 @@ abstract class CLInfoAccessor {
return buffer.getLong(0);
}
- final String getString(int key) {
+ public final String getString(int key) {
ByteBuffer buffer = localBB.get();
PointerBuffer pbuffer = localPB.get();