Home
last modified time | relevance | path

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

/frameworks/base/libs/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.cpp489 void Context::setProgramStore(ProgramStore *pfs) { in setProgramStore() argument
491 if (pfs == NULL) { in setProgramStore()
494 mFragmentStore.set(pfs); in setProgramStore()
614 ProgramStore *pfs = static_cast<ProgramStore *>(vpfs); in rsi_ContextBindProgramStore() local
615 rsc->setProgramStore(pfs); in rsi_ContextBindProgramStore()
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
DRsBenchRS.java351 ProgramFragment pfs = builder.create(); in initProgramFragment() local
352 pfs.bindSampler(Sampler.WRAP_LINEAR_MIP_LINEAR(mRS), 0); in initProgramFragment()
353 mScript.set_gPFStars(pfs); in initProgramFragment()
/frameworks/base/graphics/java/android/renderscript/
DRenderScript.java147 native void rsnContextBindProgramStore(int con, int pfs); in rsnContextBindProgramStore() argument
148 synchronized void nContextBindProgramStore(int pfs) { in nContextBindProgramStore() argument
150 rsnContextBindProgramStore(mContext, pfs); in nContextBindProgramStore()
/frameworks/base/graphics/jni/
Dandroid_renderscript_RenderScript.cpp1073 nContextBindProgramStore(JNIEnv *_env, jobject _this, RsContext con, jint pfs) in nContextBindProgramStore() argument
1075 LOG_API("nContextBindProgramStore, con(%p), pfs(%p)", con, (RsProgramStore)pfs); in nContextBindProgramStore()
1076 rsContextBindProgramStore(con, (RsProgramStore)pfs); in nContextBindProgramStore()