Home | History | Annotate | Download | only in renderscript

Lines Matching refs:ContextType

100      * ContextType specifies the specific type of context to be created.
103 public enum ContextType {
125 ContextType(int id) {
130 ContextType mContextType;
151 native int rsnContextCreate(int dev, int ver, int sdkVer, int contextType);
152 synchronized int nContextCreate(int dev, int ver, int sdkVer, int contextType) {
153 return rsnContextCreate(dev, ver, sdkVer, contextType);
1074 (mRS.mContextType != ContextType.DEBUG ||
1110 mContextType = ContextType.NORMAL;
1129 return create(ctx, sdkVersion, ContextType.NORMAL);
1139 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct) {
1160 return create(ctx, ContextType.NORMAL);
1171 public static RenderScript create(Context ctx, ContextType ct) {