Merge "Removing things that shouldn't be public" into honeycomb
This commit is contained in:
committed by
Android (Google) Code Review
commit
bfa62339ef
44
api/11.xml
44
api/11.xml
@@ -171131,50 +171131,6 @@
|
||||
<exception name="IllegalArgumentException" type="java.lang.IllegalArgumentException">
|
||||
</exception>
|
||||
</method>
|
||||
<field name="MAX_CONSTANT"
|
||||
type="int"
|
||||
transient="false"
|
||||
volatile="false"
|
||||
value="8"
|
||||
static="true"
|
||||
final="true"
|
||||
deprecated="not deprecated"
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
<field name="MAX_INPUT"
|
||||
type="int"
|
||||
transient="false"
|
||||
volatile="false"
|
||||
value="8"
|
||||
static="true"
|
||||
final="true"
|
||||
deprecated="not deprecated"
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
<field name="MAX_OUTPUT"
|
||||
type="int"
|
||||
transient="false"
|
||||
volatile="false"
|
||||
value="8"
|
||||
static="true"
|
||||
final="true"
|
||||
deprecated="not deprecated"
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
<field name="MAX_TEXTURE"
|
||||
type="int"
|
||||
transient="false"
|
||||
volatile="false"
|
||||
value="8"
|
||||
static="true"
|
||||
final="true"
|
||||
deprecated="not deprecated"
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
</class>
|
||||
<class name="Program.BaseProgramBuilder"
|
||||
extends="java.lang.Object"
|
||||
|
||||
@@ -171159,50 +171159,6 @@
|
||||
<exception name="IllegalArgumentException" type="java.lang.IllegalArgumentException">
|
||||
</exception>
|
||||
</method>
|
||||
<field name="MAX_CONSTANT"
|
||||
type="int"
|
||||
transient="false"
|
||||
volatile="false"
|
||||
value="8"
|
||||
static="true"
|
||||
final="true"
|
||||
deprecated="not deprecated"
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
<field name="MAX_INPUT"
|
||||
type="int"
|
||||
transient="false"
|
||||
volatile="false"
|
||||
value="8"
|
||||
static="true"
|
||||
final="true"
|
||||
deprecated="not deprecated"
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
<field name="MAX_OUTPUT"
|
||||
type="int"
|
||||
transient="false"
|
||||
volatile="false"
|
||||
value="8"
|
||||
static="true"
|
||||
final="true"
|
||||
deprecated="not deprecated"
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
<field name="MAX_TEXTURE"
|
||||
type="int"
|
||||
transient="false"
|
||||
volatile="false"
|
||||
value="8"
|
||||
static="true"
|
||||
final="true"
|
||||
deprecated="not deprecated"
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
</class>
|
||||
<class name="Program.BaseProgramBuilder"
|
||||
extends="java.lang.Object"
|
||||
|
||||
@@ -33,10 +33,10 @@ import android.util.Log;
|
||||
*
|
||||
**/
|
||||
public class Program extends BaseObj {
|
||||
public static final int MAX_INPUT = 8;
|
||||
public static final int MAX_OUTPUT = 8;
|
||||
public static final int MAX_CONSTANT = 8;
|
||||
public static final int MAX_TEXTURE = 8;
|
||||
static final int MAX_INPUT = 8;
|
||||
static final int MAX_OUTPUT = 8;
|
||||
static final int MAX_CONSTANT = 8;
|
||||
static final int MAX_TEXTURE = 8;
|
||||
|
||||
/**
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user