Loading graphics/java/android/renderscript/RenderScript.java +16 −1 Original line number Diff line number Diff line Loading @@ -128,6 +128,8 @@ public class RenderScript { } } ContextType mContextType; // Methods below are wrapped to protect the non-threadsafe // lockless fifo. native int rsnContextCreateGL(int dev, int ver, int sdkVer, Loading Loading @@ -1015,6 +1017,7 @@ public class RenderScript { static final int RS_MESSAGE_TO_CLIENT_USER = 4; static final int RS_MESSAGE_TO_CLIENT_NEW_BUFFER = 5; static final int RS_ERROR_FATAL_DEBUG = 0x0800; static final int RS_ERROR_FATAL_UNKNOWN = 0x1000; MessageThread(RenderScript rs) { Loading Loading @@ -1057,7 +1060,17 @@ public class RenderScript { if (msg == RS_MESSAGE_TO_CLIENT_ERROR) { String e = mRS.nContextGetErrorMessage(mRS.mContext); if (subID >= RS_ERROR_FATAL_UNKNOWN) { // Throw RSRuntimeException under the following conditions: // // 1) It is an unknown fatal error. // 2) It is a debug fatal error, and we are not in a // debug context. // 3) It is a debug fatal error, and we do not have an // error callback. if (subID >= RS_ERROR_FATAL_UNKNOWN || (subID >= RS_ERROR_FATAL_DEBUG && (mRS.mContextType != ContextType.DEBUG || mRS.mErrorCallback == null))) { throw new RSRuntimeException("Fatal error " + subID + ", details: " + e); } Loading Loading @@ -1092,6 +1105,7 @@ public class RenderScript { } RenderScript(Context ctx) { mContextType = ContextType.NORMAL; if (ctx != null) { mApplicationContext = ctx.getApplicationContext(); } Loading Loading @@ -1125,6 +1139,7 @@ public class RenderScript { rs.mDev = rs.nDeviceCreate(); rs.mContext = rs.nContextCreate(rs.mDev, 0, sdkVersion, ct.mID); rs.mContextType = ct; if (rs.mContext == 0) { throw new RSDriverException("Failed to create RS context."); } Loading Loading
graphics/java/android/renderscript/RenderScript.java +16 −1 Original line number Diff line number Diff line Loading @@ -128,6 +128,8 @@ public class RenderScript { } } ContextType mContextType; // Methods below are wrapped to protect the non-threadsafe // lockless fifo. native int rsnContextCreateGL(int dev, int ver, int sdkVer, Loading Loading @@ -1015,6 +1017,7 @@ public class RenderScript { static final int RS_MESSAGE_TO_CLIENT_USER = 4; static final int RS_MESSAGE_TO_CLIENT_NEW_BUFFER = 5; static final int RS_ERROR_FATAL_DEBUG = 0x0800; static final int RS_ERROR_FATAL_UNKNOWN = 0x1000; MessageThread(RenderScript rs) { Loading Loading @@ -1057,7 +1060,17 @@ public class RenderScript { if (msg == RS_MESSAGE_TO_CLIENT_ERROR) { String e = mRS.nContextGetErrorMessage(mRS.mContext); if (subID >= RS_ERROR_FATAL_UNKNOWN) { // Throw RSRuntimeException under the following conditions: // // 1) It is an unknown fatal error. // 2) It is a debug fatal error, and we are not in a // debug context. // 3) It is a debug fatal error, and we do not have an // error callback. if (subID >= RS_ERROR_FATAL_UNKNOWN || (subID >= RS_ERROR_FATAL_DEBUG && (mRS.mContextType != ContextType.DEBUG || mRS.mErrorCallback == null))) { throw new RSRuntimeException("Fatal error " + subID + ", details: " + e); } Loading Loading @@ -1092,6 +1105,7 @@ public class RenderScript { } RenderScript(Context ctx) { mContextType = ContextType.NORMAL; if (ctx != null) { mApplicationContext = ctx.getApplicationContext(); } Loading Loading @@ -1125,6 +1139,7 @@ public class RenderScript { rs.mDev = rs.nDeviceCreate(); rs.mContext = rs.nContextCreate(rs.mDev, 0, sdkVersion, ct.mID); rs.mContextType = ct; if (rs.mContext == 0) { throw new RSDriverException("Failed to create RS context."); } Loading