/**
  * @deprecated in API 16 Standard View constructor. In order to render something, you must call
  *     {@link android.opengl.GLSurfaceView#setRenderer} to register a renderer.
  */
 public RSSurfaceView(Context context, AttributeSet attrs) {
   super(context, attrs);
   init();
   // Log.v(RenderScript.LOG_TAG, "RSSurfaceView");
 }
 /**
  * @deprecated in API 16 Standard View constructor. In order to render something, you must call
  *     {@link android.opengl.GLSurfaceView#setRenderer} to register a renderer.
  */
 public RSSurfaceView(Context context) {
   super(context);
   init();
   // Log.v(RenderScript.LOG_TAG, "RSSurfaceView");
 }