Remove functions for reflecting dalvik classes to rs types.

Change-Id: I41bc7fd704772d177f8035c04256d0ca63e4398b
Change-Id: I4df3673a1db1e79c309ab4eb41d2145802ed322c
This commit is contained in:
Jason Sams
2010-09-01 12:25:54 -07:00
parent 49bdaf0293
commit e447a78635
4 changed files with 0 additions and 201 deletions

View File

@@ -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);