Home
last modified time | relevance | path

Searched refs:pfs (Results 1 – 5 of 5) sorted by relevance

/frameworks/rs/
DrsProgramStore.cpp112 ProgramStore *pfs = new ProgramStore(rsc, in getProgramStore() local
116 returnRef.set(pfs); in getProgramStore()
118 pfs->init(); in getProgramStore()
121 rsc->mStateFragmentStore.mStorePrograms.push(pfs); in getProgramStore()
DrsContext.cpp663 void Context::setProgramStore(ProgramStore *pfs) { in setProgramStore() argument
665 if (pfs == nullptr) { in setProgramStore()
668 mFragmentStore.set(pfs); in setProgramStore()
813 ProgramStore *pfs = static_cast<ProgramStore *>(vpfs); in rsi_ContextBindProgramStore() local
814 rsc->setProgramStore(pfs); in rsi_ContextBindProgramStore()
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
DUiTest.java258 ProgramFragment pfs = builder.create(); in initUiScript() local
259 pfs.bindSampler(Sampler.WRAP_LINEAR_MIP_LINEAR(mRS), 0); in initUiScript()
260 mUiScript.set_gPFStars(pfs); in initUiScript()
/frameworks/base/rs/java/android/renderscript/
DRenderScript.java281 native void rsnContextBindProgramStore(long con, long pfs); in rsnContextBindProgramStore() argument
282 synchronized void nContextBindProgramStore(long pfs) { in nContextBindProgramStore() argument
284 rsnContextBindProgramStore(mContext, pfs); in nContextBindProgramStore()
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp2276 nContextBindProgramStore(JNIEnv *_env, jobject _this, jlong con, jlong pfs) in nContextBindProgramStore() argument
2279 ALOGD("nContextBindProgramStore, con(%p), pfs(%p)", (RsContext)con, (RsProgramStore)pfs); in nContextBindProgramStore()
2281 rsContextBindProgramStore((RsContext)con, (RsProgramStore)pfs); in nContextBindProgramStore()