Remove InvokeData and add ContextFinish to generate a sync point.
Change-Id: I27da8bf5fba2c8a428964cb6a5e66dd7a94958d8
This commit is contained in:
@@ -46,12 +46,12 @@ public class Script extends BaseObj {
|
||||
mRS.nScriptInvoke(mID, slot);
|
||||
}
|
||||
|
||||
protected void invokeData(int slot) {
|
||||
mRS.nScriptInvokeData(mID, slot);
|
||||
}
|
||||
|
||||
protected void invokeV(int slot, FieldPacker v) {
|
||||
mRS.nScriptInvokeV(mID, slot, v.getData());
|
||||
protected void invoke(int slot, FieldPacker v) {
|
||||
if (v != null) {
|
||||
mRS.nScriptInvokeV(mID, slot, v.getData());
|
||||
} else {
|
||||
mRS.nScriptInvoke(mID, slot);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user