diff options
author | Stephen Hines <srhines@google.com> | 2012-05-07 15:34:29 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2012-05-07 15:34:29 -0700 |
commit | 9c9ad3f8c218954e46aab81f9af7834cea5675ca (patch) | |
tree | 1ae4ba36dda77457b82b8e2705ecdcc2dc370327 /graphics/java/android/renderscript/RSTextureView.java | |
parent | b3482ffbeee30650359e6ab8f3950a83e06963b4 (diff) |
Revert "Deprecate"
This reverts commit a0c2eb27b408660b02fa248943166d6c7e447908.
Conflicts:
api/current.txt
graphics/java/android/renderscript/Element.java
graphics/java/android/renderscript/Script.java
Change-Id: I3c8fa62b12da95b3dbc842b5284dbed65d3cf963
Diffstat (limited to 'graphics/java/android/renderscript/RSTextureView.java')
-rw-r--r-- | graphics/java/android/renderscript/RSTextureView.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/graphics/java/android/renderscript/RSTextureView.java b/graphics/java/android/renderscript/RSTextureView.java index b40f73c6e900..30b2f994d39c 100644 --- a/graphics/java/android/renderscript/RSTextureView.java +++ b/graphics/java/android/renderscript/RSTextureView.java @@ -28,7 +28,7 @@ import android.util.AttributeSet; import android.util.Log; import android.view.TextureView; -/** @deprecated renderscript is deprecated in J +/** * The Texture View for a graphics renderscript (RenderScriptGL) * to draw on. * @@ -37,7 +37,7 @@ public class RSTextureView extends TextureView implements TextureView.SurfaceTex private RenderScriptGL mRS; private SurfaceTexture mSurfaceTexture; - /** @deprecated renderscript is deprecated in J + /** * Standard View constructor. In order to render something, you * must call {@link android.opengl.GLSurfaceView#setRenderer} to * register a renderer. @@ -48,7 +48,7 @@ public class RSTextureView extends TextureView implements TextureView.SurfaceTex //Log.v(RenderScript.LOG_TAG, "RSSurfaceView"); } - /** @deprecated renderscript is deprecated in J + /** * Standard View constructor. In order to render something, you * must call {@link android.opengl.GLSurfaceView#setRenderer} to * register a renderer. @@ -102,7 +102,7 @@ public class RSTextureView extends TextureView implements TextureView.SurfaceTex mSurfaceTexture = surface; } - /** @deprecated renderscript is deprecated in J + /** * Inform the view that the activity is paused. The owner of this view must * call this method when the activity is paused. Calling this method will * pause the rendering thread. @@ -114,7 +114,7 @@ public class RSTextureView extends TextureView implements TextureView.SurfaceTex } } - /** @deprecated renderscript is deprecated in J + /** * Inform the view that the activity is resumed. The owner of this view must * call this method when the activity is resumed. Calling this method will * recreate the OpenGL display and resume the rendering @@ -127,7 +127,7 @@ public class RSTextureView extends TextureView implements TextureView.SurfaceTex } } - /** @deprecated renderscript is deprecated in J + /** * Create a new RenderScriptGL object and attach it to the * TextureView if present. * @@ -145,7 +145,7 @@ public class RSTextureView extends TextureView implements TextureView.SurfaceTex return rs; } - /** @deprecated renderscript is deprecated in J + /** * Destroy the RenderScriptGL object associated with this * TextureView. */ @@ -154,7 +154,7 @@ public class RSTextureView extends TextureView implements TextureView.SurfaceTex mRS = null; } - /** @deprecated renderscript is deprecated in J + /** * Set a new RenderScriptGL object. This also will attach the * new object to the TextureView if present. * @@ -167,7 +167,7 @@ public class RSTextureView extends TextureView implements TextureView.SurfaceTex } } - /** @deprecated renderscript is deprecated in J + /** * Returns the previously set RenderScriptGL object. * * @return RenderScriptGL |