aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/CLObject.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-04-12 22:18:39 +0200
committerMichael Bien <[email protected]>2010-04-12 22:18:39 +0200
commitbf07b44ed6a8958dd321cc4c08fd2bdd08299611 (patch)
treee24b7c4e4197a80e0ecaad75b9b3667299fd8323 /src/com/mbien/opencl/CLObject.java
parent7680472b21ec1e2deacb49addae65c820a2e2a4d (diff)
renamed package com.mbien.* in com.jogamp.* JOCL is now officially a JogAmp team player ;).
Diffstat (limited to 'src/com/mbien/opencl/CLObject.java')
-rw-r--r--src/com/mbien/opencl/CLObject.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/com/mbien/opencl/CLObject.java b/src/com/mbien/opencl/CLObject.java
deleted file mode 100644
index ff5f7d1f..00000000
--- a/src/com/mbien/opencl/CLObject.java
+++ /dev/null
@@ -1,57 +0,0 @@
-package com.mbien.opencl;
-
-/**
- * Common superclass for all OpenCL objects.
- * @author Michael Bien
- */
-abstract class CLObject {
-
- /**
- * The OpenCL object handle.
- */
- public final long ID;
-
- protected CLContext context;
-
- protected final CL cl;
-
- CLObject(CL cl, long ID) {
- this.cl = cl;
- this.context = null;
- this.ID = ID;
- }
-
- CLObject(CLContext context, long ID) {
- this.cl = context.cl;
- this.context = context;
- this.ID = ID;
- }
-
- /**
- * Returns the context for this OpenCL object.
- */
- public CLContext getContext() {
- return context;
- }
-
- /**
- * Returns the platform for this OpenCL object.
- */
- public CLPlatform getPlatform() {
- return context.getPlatform();
- }
-
- /**
- * Returns the OpenCL object handle
- */
- public long getID() {
- return ID;
- }
-
- @Override
- public String toString() {
- return "CLObject [id: " + ID
- + " context: " + context+"]";
- }
-
-}