Remove functions for reflecting dalvik classes to rs types.
Change-Id: I41bc7fd704772d177f8035c04256d0ca63e4398b Change-Id: I4df3673a1db1e79c309ab4eb41d2145802ed322c
This commit is contained in:
@@ -177,14 +177,6 @@ public class RenderScript {
|
||||
synchronized int nTypeCreate() {
|
||||
return rsnTypeCreate(mContext);
|
||||
}
|
||||
native void rsnTypeFinalDestroy(int con, Type t);
|
||||
synchronized void nTypeFinalDestroy(Type t) {
|
||||
rsnTypeFinalDestroy(mContext, t);
|
||||
}
|
||||
native void rsnTypeSetupFields(int con, Type t, int[] types, int[] bits, Field[] IDs);
|
||||
synchronized void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs) {
|
||||
rsnTypeSetupFields(mContext, t, types, bits, IDs);
|
||||
}
|
||||
native void rsnTypeGetNativeData(int con, int id, int[] typeData);
|
||||
synchronized void nTypeGetNativeData(int id, int[] typeData) {
|
||||
rsnTypeGetNativeData(mContext, id, typeData);
|
||||
@@ -257,14 +249,6 @@ public class RenderScript {
|
||||
synchronized void nAllocationRead(int id, float[] d) {
|
||||
rsnAllocationRead(mContext, id, d);
|
||||
}
|
||||
native void rsnAllocationSubDataFromObject(int con, int id, Type t, int offset, Object o);
|
||||
synchronized void nAllocationSubDataFromObject(int id, Type t, int offset, Object o) {
|
||||
rsnAllocationSubDataFromObject(mContext, id, t, offset, o);
|
||||
}
|
||||
native void rsnAllocationSubReadFromObject(int con, int id, Type t, int offset, Object o);
|
||||
synchronized void nAllocationSubReadFromObject(int id, Type t, int offset, Object o) {
|
||||
rsnAllocationSubReadFromObject(mContext, id, t, offset, o);
|
||||
}
|
||||
native int rsnAllocationGetType(int con, int id);
|
||||
synchronized int nAllocationGetType(int id) {
|
||||
return rsnAllocationGetType(mContext, id);
|
||||
|
||||
Reference in New Issue
Block a user