Esempio n. 1
0
  public ShaderView(Context context) {
    super(context);

    init(context, GLSurfaceView.RENDERMODE_CONTINUOUSLY);
  }
Esempio n. 2
0
  public ShaderView(Context context, AttributeSet attrs) {
    super(context, attrs);

    init(context, GLSurfaceView.RENDERMODE_CONTINUOUSLY);
  }
Esempio n. 3
0
  public ShaderView(Context context, int renderMode) {
    super(context);

    init(context, renderMode);
  }