Searched refs:ProgramStore (Results 1 - 20 of 20) sorted by relevance

/frameworks/rs/driver/
H A DrsdProgramStore.h24 const android::renderscript::ProgramStore *ps);
26 const android::renderscript::ProgramStore *ps);
28 const android::renderscript::ProgramStore *ps);
H A DrsdProgramStore.cpp28 using android::renderscript::ProgramStore;
39 bool rsdProgramStoreInit(const Context *rsc, const ProgramStore *ps) {
155 void rsdProgramStoreSetActive(const Context *rsc, const ProgramStore *ps) {
198 void rsdProgramStoreDestroy(const Context *rsc, const ProgramStore *ps) {
H A DrsdRuntimeStubs.cpp48 using android::renderscript::ProgramStore;
945 rsrBindProgramStore(rsc, (ProgramStore *)ps.p);
/frameworks/rs/
H A DrsProgramStore.h38 class ProgramStore : public ProgramBase { class in namespace:android::renderscript
66 static ProgramStore *createFromStream(Context *rsc, IStream *stream);
67 static ObjectBaseRef<ProgramStore> getProgramStore(Context *,
76 virtual ~ProgramStore();
79 ProgramStore(Context *,
93 ObjectBaseRef<ProgramStore> mDefault;
94 ObjectBaseRef<ProgramStore> mLast;
97 std::vector<ProgramStore *> mStorePrograms;
H A DrsProgramStore.cpp23 ProgramStore::ProgramStore(Context *rsc, function in class:android::renderscript::ProgramStore
43 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 DrsContext.h103 ObjectBaseRef<ProgramStore> mStore;
133 void setProgramStore(ProgramStore *);
139 ProgramStore * getProgramStore() {return mFragmentStore.get();}
173 ProgramStore * getDefaultProgramStore() const {
325 ObjectBaseRef<ProgramStore> mFragmentStore;
H A DrsScript.h33 class ProgramStore;
112 ObjectBaseRef<ProgramStore> mFragmentStore;
H A DrsScriptGroup.h33 class ProgramStore;
H A Drs_hal.h90 class ProgramStore;
317 bool (*init)(const Context *rsc, const ProgramStore *ps);
318 void (*setActive)(const Context *rsc, const ProgramStore *ps);
319 void (*destroy)(const Context *rsc, const ProgramStore *ps);
H A DrsFont.h212 ObjectBaseRef<ProgramStore> mFontProgramStore;
H A DrsRuntime.h37 void rsrBindProgramStore(Context *, ProgramStore *);
H A DrsScriptC_LibGL.cpp69 void rsrBindProgramStore(Context *rsc, ProgramStore *ps) {
H A DrsContext.cpp628 void Context::setProgramStore(ProgramStore *pfs) {
775 ProgramStore *pfs = static_cast<ProgramStore *>(vpfs);
H A DrsFont.cpp536 mFontProgramStore.set(ProgramStore::getProgramStore(mRSC, true, true, true, true,
/frameworks/base/rs/java/android/renderscript/
H A DProgramStore.java22 * <p>ProgramStore contains a set of parameters that control how
35 public class ProgramStore extends BaseObj { class in inherits:BaseObj
146 ProgramStore(long id, RenderScript rs) { method in class:ProgramStore
235 public static ProgramStore BLEND_NONE_DEPTH_TEST(RenderScript rs) {
237 ProgramStore.Builder builder = new ProgramStore.Builder(rs);
238 builder.setDepthFunc(ProgramStore.DepthFunc.LESS);
256 public static ProgramStore BLEND_NONE_DEPTH_NONE(RenderScript rs) {
258 ProgramStore.Builder builder = new ProgramStore
[all...]
H A DRenderScriptGL.java291 * Set the default ProgramStore object seen as the parent state by the root
296 public void bindProgramStore(ProgramStore p) {
H A DRenderScript.java1124 ProgramStore mProgramStore_BLEND_NONE_DEPTH_TEST;
1125 ProgramStore mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH;
1126 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_TEST;
1127 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH;
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/
H A DBallsRS.java86 ProgramStore BLEND_ADD_DEPTH_NONE(RenderScript rs) {
87 ProgramStore.Builder builder = new ProgramStore.Builder(rs);
88 builder.setDepthFunc(ProgramStore.DepthFunc.ALWAYS);
89 builder.setBlendFunc(ProgramStore.BlendSrcFunc.ONE, ProgramStore.BlendDstFunc.ONE);
/frameworks/rs/driver/runtime/
H A Drs_structs.h90 * internal members of the C++ class ProgramStore owned by librs. Unfortunately,
103 typedef struct ProgramStore { struct
/frameworks/rs/script_api/
H A Drs_graphics.spec178 summary: Handle to a ProgramStore
180 Opaque handle to a RenderScript ProgramStore object.
181 See: android.renderscript.ProgramStore
330 summary: Bind a ProgramStore
332 Bind a new ProgramStore to the rendering context.

Completed in 452 milliseconds