Private API to support MFF transition.
Change-Id: I17cc9dc46eb37e4397428ba64305b0fd8ed3ae81
This commit is contained in:
@ -228,10 +228,10 @@ public class RenderScript {
|
||||
rsnTypeGetNativeData(mContext, id, typeData);
|
||||
}
|
||||
|
||||
native int rsnAllocationCreateTyped(int con, int type, int mip, int usage);
|
||||
synchronized int nAllocationCreateTyped(int type, int mip, int usage) {
|
||||
native int rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer);
|
||||
synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) {
|
||||
validate();
|
||||
return rsnAllocationCreateTyped(mContext, type, mip, usage);
|
||||
return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
|
||||
}
|
||||
native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
|
||||
synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
|
||||
|
Reference in New Issue
Block a user