Home
last modified time | relevance | path

Searched refs:targetApi (Results 1 – 3 of 3) sorted by relevance

/frameworks/rs/cpp/
DRenderScript.cpp72 static bool loadSO(const char* filename, int targetApi) { in loadSO() argument
79 if (loadSymbols(handle, *RS::dispatch, targetApi) == false) { in loadSO()
96 bool RS::initDispatch(int targetApi) { in initDispatch() argument
110 usingNative = loadSO("libRS.so", targetApi); in initDispatch()
113 if (loadSO("libRSSupport.so", targetApi) == false) { in initDispatch()
130 bool RS::init(const char * name, uint32_t flags, int targetApi) { in init() argument
136 if (targetApi == 0) { in init()
137 targetApi = RS_VERSION; in init()
140 if (initDispatch(targetApi) == false) { in init()
167 mContext = RS::dispatch->ContextCreate(device, 0, targetApi, RS_CONTEXT_TYPE_NORMAL, flags); in init()
DrsCppStructs.h375 bool init(const char * name, uint32_t flags, int targetApi);
427 static bool initDispatch(int targetApi);
/frameworks/rs/support/jni/
Dandroid_renderscript_RenderScript.cpp276 static jboolean nLoadSO(JNIEnv *_env, jobject _this, jboolean useNative, jint targetApi, jstring li… in nLoadSO() argument
295 if (loadSymbols(handle, dispatchTab, targetApi) == false) { in nLoadSO()