summaryrefslogtreecommitdiffstats
path: root/src/demos/hdr/Pipeline.java
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2009-06-15 23:05:16 +0000
committerKenneth Russel <[email protected]>2009-06-15 23:05:16 +0000
commit935d2596c13371bb745d921dbcb9f05b0c11a010 (patch)
tree7fcc310618ae5a90edc734dc821e75afc0f080aa /src/demos/hdr/Pipeline.java
parente2332d2f2908e68f1e77454c73f329f8ff2b400d (diff)
Deleted obsolete source code in preparation for copying JOGL_2_SANDBOX
on to trunk git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@351 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/hdr/Pipeline.java')
-rwxr-xr-xsrc/demos/hdr/Pipeline.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/demos/hdr/Pipeline.java b/src/demos/hdr/Pipeline.java
deleted file mode 100755
index 91faff4..0000000
--- a/src/demos/hdr/Pipeline.java
+++ /dev/null
@@ -1,31 +0,0 @@
-package demos.hdr;
-
-import java.io.*;
-import java.util.*;
-
-import javax.media.opengl.*;
-import com.sun.opengl.cg.*;
-import demos.util.*;
-
-public interface Pipeline {
- public void init();
- public void initFloatingPointTexture (GL gl, int textureObject, int w, int h);
- public void initTexture (GL gl, int textureObject, int w, int h);
- public void copyToTexture (GL gl, int textureObject, int w, int h);
- public void bindTexture (GL gl, int textureObject);
- public int loadVertexProgram (GL gl, String filename) throws IOException;
- public int loadFragmentProgram (GL gl, String filename) throws IOException;
- public void enableVertexProgram (GL gl, int program);
- public void enableFragmentProgram (GL gl, int program);
- public void disableVertexProgram (GL gl);
- public void disableFragmentProgram (GL gl);
- public int getNamedParameter (int program, String name);
- public void setVertexProgramParameter1f (GL gl, int param, float val);
- public void setVertexProgramParameter3f (GL gl, int param, float x, float y, float z);
- public void setVertexProgramParameter4f (GL gl, int param, float x, float y, float z, float w);
- public void setFragmentProgramParameter1f (GL gl, int param, float val);
- public void setFragmentProgramParameter3f (GL gl, int param, float x, float y, float z);
- public void setFragmentProgramParameter4f (GL gl, int param, float x, float y, float z, float w);
- public void trackModelViewProjectionMatrix(GL gl, int param);
- public void setMatrixParameterfc (GL gl, int param, float[] matrix);
-}