Merge "Unhide more of the RS APIs." into honeycomb

This commit is contained in:
Stephen Hines
2011-01-12 14:39:11 -08:00
committed by Android (Google) Code Review
13 changed files with 1493 additions and 17 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -24,7 +24,6 @@ import android.util.Log;
import android.util.TypedValue;
/**
* @hide
*
**/
public class AllocationAdapter extends Allocation {

View File

@@ -28,7 +28,6 @@ import android.util.Log;
import android.util.TypedValue;
/**
* @hide
*
**/
public class FileA3D extends BaseObj {

View File

@@ -30,7 +30,6 @@ import android.util.Log;
import android.util.TypedValue;
/**
* @hide
*
**/
public class Font extends BaseObj {

View File

@@ -21,7 +21,6 @@ import android.util.Log;
/**
* @hide
*
**/
public class Long2 {

View File

@@ -21,7 +21,6 @@ import android.util.Log;
/**
* @hide
*
**/
public class Long3 {

View File

@@ -21,7 +21,6 @@ import android.util.Log;
/**
* @hide
*
**/
public class Long4 {

View File

@@ -22,7 +22,6 @@ import android.util.Config;
import android.util.Log;
/**
* @hide
* Mesh class is a container for geometric data displayed in
* renderscript.
*
@@ -205,7 +204,7 @@ public class Mesh extends BaseObj {
/**
* Adds a vertex data type to the builder object
*
* @param r type of the vertex data allocation to be created
* @param t type of the vertex data allocation to be created
*
* @return this
**/

View File

@@ -20,7 +20,6 @@ package android.renderscript;
/**
* Base class for all exceptions thrown by the Android
* Renderscript
* @hide
*/
public class RSDriverException extends RSRuntimeException {
public RSDriverException(String string) {

View File

@@ -20,7 +20,6 @@ package android.renderscript;
/**
* Base class for all exceptions thrown by the Android
* Renderscript
* @hide
*/
public class RSIllegalArgumentException extends RSRuntimeException {
public RSIllegalArgumentException(String string) {

View File

@@ -20,7 +20,6 @@ package android.renderscript;
/**
* Base class for all exceptions thrown by the Android
* Renderscript
* @hide
*/
public class RSInvalidStateException extends RSRuntimeException {
public RSInvalidStateException(String string) {

View File

@@ -20,7 +20,6 @@ package android.renderscript;
/**
* Base class for all exceptions thrown by the Android
* Renderscript
* @hide
*/
public class RSRuntimeException
extends java.lang.RuntimeException {

View File

@@ -30,16 +30,16 @@ import android.view.SurfaceHolder;
import android.view.SurfaceView;
/**
* @hide
*
**/
*/
public class RSSurfaceView extends SurfaceView implements SurfaceHolder.Callback {
private SurfaceHolder mSurfaceHolder;
private RenderScriptGL mRS;
/**
* Standard View constructor. In order to render something, you
* must call {@link #setRenderer} to register a renderer.
* must call {@link android.opengl.GLSurfaceView#setRenderer} to
* register a renderer.
*/
public RSSurfaceView(Context context) {
super(context);
@@ -49,7 +49,8 @@ public class RSSurfaceView extends SurfaceView implements SurfaceHolder.Callback
/**
* Standard View constructor. In order to render something, you
* must call {@link #setRenderer} to register a renderer.
* must call {@link android.opengl.GLSurfaceView#setRenderer} to
* register a renderer.
*/
public RSSurfaceView(Context context, AttributeSet attrs) {
super(context, attrs);