aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/CLGLTexture.java
diff options
context:
space:
mode:
authorMichael Bien <mbien@fh-landshut.de>2010-03-08 17:08:03 +0100
committerMichael Bien <mbien@fh-landshut.de>2010-03-08 17:08:03 +0100
commite081f13ca50353a7a9c34438a2f81d38e03e88a7 (patch)
tree7948e78a8e73fb4de5340a80075d35a8a1499c1f /src/com/mbien/opencl/CLGLTexture.java
parent5ad19147a76f80635dcae18693929edbf1da2cbf (diff)
introduced gl package and moved all interoperability functionality into it.
Diffstat (limited to 'src/com/mbien/opencl/CLGLTexture.java')
-rw-r--r--src/com/mbien/opencl/CLGLTexture.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/com/mbien/opencl/CLGLTexture.java b/src/com/mbien/opencl/CLGLTexture.java
deleted file mode 100644
index 9290dc63..00000000
--- a/src/com/mbien/opencl/CLGLTexture.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Created on Friday, February 26 2010
- */
-
-package com.mbien.opencl;
-
-/**
- *
- * @author Michael Bien
- */
-interface CLGLTexture {
-
- /**
- * Returns the OpenGL texture target of this texture.
- */
- public int getTextureTarget();
-
- /**
- * Returns the OpenGL mipmap level of this texture.
- */
- public int getMipMapLevel();
-
-}