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.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 DrsdRuntimeStubs.cpp884 rsrBindProgramStore(rsc, (ProgramStore *)ps.p);
/frameworks/rs/
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 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 DrsContext.h112 ObjectBaseRef<ProgramStore> mStore;
142 void setProgramStore(ProgramStore *);
148 ProgramStore * getProgramStore() {return mFragmentStore.get();}
182 ProgramStore * getDefaultProgramStore() const {
334 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;
314 bool (*init)(const Context *rsc, const ProgramStore *ps);
315 void (*setActive)(const Context *rsc, const ProgramStore *ps);
316 void (*destroy)(const Context *rsc, const ProgramStore *ps);
H A DrsFont.h212 ObjectBaseRef<ProgramStore> mFontProgramStore;
H A DrsRuntime.h41 void rsrBindProgramStore(Context *, ProgramStore *);
H A DrsScriptC_LibGL.cpp73 void rsrBindProgramStore(Context *rsc, ProgramStore *ps) {
H A DrsContext.cpp666 void Context::setProgramStore(ProgramStore *pfs) {
816 ProgramStore *pfs = static_cast<ProgramStore *>(vpfs);
H A DrsFont.cpp537 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/java/tests/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/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 271 milliseconds