diff options
author | phil <[email protected]> | 2016-10-17 09:29:52 +1300 |
---|---|---|
committer | phil <[email protected]> | 2016-10-17 09:29:52 +1300 |
commit | 4cb354edc89e379a3fe02cecc7d64171e951b24e (patch) | |
tree | 638b625f71ad05e11bd85d71bf6fb589b3c0769f /src | |
parent | 6d5ae1db4cdf2f4b714d3739e35c67d5160f4c56 (diff) |
gl2es2 pipeline deprecated layer had some non-deprecated methods in it
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java b/src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java index 0775ef6..1e8422a 100644 --- a/src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java +++ b/src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java @@ -337,36 +337,7 @@ abstract class Jogl2es2DEPPipeline extends Pipeline // Canvas3D methods - native wrappers // - @Override - @Deprecated - void createQueryContext(Canvas3D cv, Drawable drawable, boolean offScreen, int width, int height) - { - throw new UnsupportedOperationException("Not supported in the GL2ES2 pipeline.\n" + VALID_FORMAT_MESSAGE); - } - - // This is the native for creating an offscreen buffer - @Override - @Deprecated - Drawable createOffScreenBuffer(Canvas3D cv, Context ctx, int width, int height) - { - throw new UnsupportedOperationException("Not supported in the GL2ES2 pipeline.\n" + VALID_FORMAT_MESSAGE); - } - // 'destroyContext' is called first if context exists - @Override - @Deprecated - void destroyOffScreenBuffer(Canvas3D cv, Context ctx, Drawable drawable) - { - throw new UnsupportedOperationException("Not supported in the GL2ES2 pipeline.\n" + VALID_FORMAT_MESSAGE); - } - - // This is the native for reading the image from the offscreen buffer - @Override - @Deprecated - void readOffScreenBuffer(Canvas3D cv, Context ctx, int format, int dataType, Object data, int width, int height) - { - throw new UnsupportedOperationException("Not supported in the GL2ES2 pipeline.\n" + VALID_FORMAT_MESSAGE); - } // This is the native method for doing accumulation. @Override |