Searched refs:ProgramStore (Results 1 - 25 of 52) sorted by last modified time

123

/frameworks/support/renderscript/v8/rs_support/
H A DrsScriptGroup.h31 class ProgramStore;
H A Drs_hal.h40 class ProgramStore;
213 bool (*init)(const Context *rsc, const ProgramStore *ps);
214 void (*setActive)(const Context *rsc, const ProgramStore *ps);
215 void (*destroy)(const Context *rsc, const ProgramStore *ps);
/frameworks/rs/driver/
H A DrsdProgramStore.cpp40 bool rsdProgramStoreInit(const Context *rsc, const ProgramStore *ps) {
156 void rsdProgramStoreSetActive(const Context *rsc, const ProgramStore *ps) {
199 void rsdProgramStoreDestroy(const Context *rsc, const ProgramStore *ps) {
H A DrsdProgramStore.h24 const android::renderscript::ProgramStore *ps);
26 const android::renderscript::ProgramStore *ps);
28 const android::renderscript::ProgramStore *ps);
H A DrsdRuntimeStubs.cpp151 static void SC_BindProgramStore(ProgramStore *ps) {
/frameworks/rs/
H A DrsContext.cpp576 void Context::setProgramStore(ProgramStore *pfs) {
701 ProgramStore *pfs = static_cast<ProgramStore *>(vpfs);
H A DrsContext.h86 ObjectBaseRef<ProgramStore> mStore;
111 void setProgramStore(ProgramStore *);
117 ProgramStore * getProgramStore() {return mFragmentStore.get();}
148 ProgramStore * getDefaultProgramStore() const {
237 ObjectBaseRef<ProgramStore> mFragmentStore;
H A DrsFont.cpp532 mFontProgramStore.set(ProgramStore::getProgramStore(mRSC, true, true, true, true,
H A DrsFont.h213 ObjectBaseRef<ProgramStore> mFontProgramStore;
H A DrsProgramStore.cpp24 ProgramStore::ProgramStore(Context *rsc, function in class:ProgramStore
44 void ProgramStore::preDestroy() const {
53 ProgramStore::~ProgramStore() {
57 void ProgramStore::setup(const Context *rsc, ProgramStoreState *state) {
66 void ProgramStore::serialize(Context *rsc, OStream *stream) const {
69 ProgramStore *ProgramStore::createFromStream(Context *rsc, IStream *stream) {
73 void ProgramStore
[all...]
H A DrsProgramStore.h36 class ProgramStore : public ProgramBase { class in namespace:android::renderscript
64 static ProgramStore *createFromStream(Context *rsc, IStream *stream);
65 static ObjectBaseRef<ProgramStore> getProgramStore(Context *,
74 virtual ~ProgramStore();
77 ProgramStore(Context *,
91 ObjectBaseRef<ProgramStore> mDefault;
92 ObjectBaseRef<ProgramStore> mLast;
95 Vector<ProgramStore *> mStorePrograms;
H A DrsRuntime.h36 void rsrBindProgramStore(Context *, Script *, ProgramStore *);
H A DrsScript.h30 class ProgramStore;
93 ObjectBaseRef<ProgramStore> mFragmentStore;
H A DrsScriptC_LibGL.cpp73 void rsrBindProgramStore(Context *rsc, Script *sc, ProgramStore *ps) {
H A DrsScriptGroup.h31 class ProgramStore;
H A Drs_hal.h40 class ProgramStore;
213 bool (*init)(const Context *rsc, const ProgramStore *ps);
214 void (*setActive)(const Context *rsc, const ProgramStore *ps);
215 void (*destroy)(const Context *rsc, const ProgramStore *ps);
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselRS.java446 final ProgramStore.DepthFunc depthFunc = mForceBlendCardsWithZ ?
447 ProgramStore.DepthFunc.LESS : ProgramStore.DepthFunc.ALWAYS;
450 mScript.set_programStoreBackground(new ProgramStore.Builder(mRS)
451 .setBlendFunc(ProgramStore.BlendSrcFunc.ONE, ProgramStore.BlendDstFunc.ZERO)
458 setProgramStoreCard(0, new ProgramStore.Builder(mRS)
459 .setBlendFunc(ProgramStore.BlendSrcFunc.ONE,
460 ProgramStore.BlendDstFunc.ONE_MINUS_SRC_ALPHA)
467 mScript.set_programStoreDetail(new ProgramStore
[all...]
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_structs.h60 * internal members of the C++ class ProgramStore owned by librs. Unfortunately,
73 typedef struct ProgramStore { struct
/frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
H A DRsListRS.java24 import android.renderscript.ProgramStore.DepthFunc;
H A DRsRenderStatesRS.java25 import android.renderscript.ProgramStore.DepthFunc;
26 import android.renderscript.ProgramStore.BlendSrcFunc;
27 import android.renderscript.ProgramStore.BlendDstFunc;
71 private ProgramStore mProgStoreBlendNoneDepth;
72 private ProgramStore mProgStoreBlendNone;
73 private ProgramStore mProgStoreBlendAlpha;
74 private ProgramStore mProgStoreBlendAdd;
131 ProgramStore BLEND_ADD_DEPTH_NONE(RenderScript rs) {
132 ProgramStore.Builder builder = new ProgramStore
[all...]
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSceneGraphRS.java27 import android.renderscript.ProgramStore.DepthFunc;
54 private ProgramStore mPSBackground;
94 ProgramStore.Builder b = new ProgramStore.Builder(mRS);
96 b.setDepthFunc(ProgramStore.DepthFunc.LESS);
H A DSgTransform.java26 import android.renderscript.ProgramStore.DepthFunc;
H A DSimpleModelRS.java23 import android.renderscript.ProgramStore.DepthFunc;
46 private ProgramStore mPSBackground;
78 ProgramStore.Builder b = new ProgramStore.Builder(mRS);
80 b.setDepthFunc(ProgramStore.DepthFunc.LESS);
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
H A DFillTest.java159 mFillScript.set_gProgStoreBlendNone(ProgramStore.BLEND_NONE_DEPTH_NONE(mRS));
160 mFillScript.set_gProgStoreBlendAlpha(ProgramStore.BLEND_ALPHA_DEPTH_NONE(mRS));
H A DMeshTest.java157 mGeoScript.set_gProgStoreBlendNone(ProgramStore.BLEND_NONE_DEPTH_NONE(mRS));

Completed in 206 milliseconds

123