コード例 #1
0
ファイル: ShaderView.java プロジェクト: MrGru/ShaderEditor
  public ShaderView(Context context) {
    super(context);

    init(context, GLSurfaceView.RENDERMODE_CONTINUOUSLY);
  }
コード例 #2
0
ファイル: ShaderView.java プロジェクト: MrGru/ShaderEditor
  public ShaderView(Context context, AttributeSet attrs) {
    super(context, attrs);

    init(context, GLSurfaceView.RENDERMODE_CONTINUOUSLY);
  }
コード例 #3
0
ファイル: ShaderView.java プロジェクト: MrGru/ShaderEditor
  public ShaderView(Context context, int renderMode) {
    super(context);

    init(context, renderMode);
  }