Update ScriptC constructor to remove depricated param.
Change-Id: Id36e325834526c6b5416fd78d5cf4259d7df97e9
This commit is contained in:
@@ -33,11 +33,11 @@ import java.lang.reflect.Modifier;
|
||||
public class ScriptC extends Script {
|
||||
private static final String TAG = "ScriptC";
|
||||
|
||||
ScriptC(int id, RenderScript rs) {
|
||||
protected ScriptC(int id, RenderScript rs) {
|
||||
super(id, rs);
|
||||
}
|
||||
|
||||
protected ScriptC(RenderScript rs, Resources resources, int resourceID, boolean isRoot) {
|
||||
protected ScriptC(RenderScript rs, Resources resources, int resourceID) {
|
||||
super(0, rs);
|
||||
mID = internalCreate(rs, resources, resourceID);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user