/frameworks/rs/ |
D | rsProgramStore.cpp | 23 ProgramStore::ProgramStore(Context *rsc, in ProgramStore() function in android::renderscript::ProgramStore 43 void ProgramStore::preDestroy() const { in preDestroy() 53 ProgramStore::~ProgramStore() { in ~ProgramStore() 57 void ProgramStore::setup(const Context *rsc, ProgramStoreState *state) { in setup() 66 void ProgramStore::serialize(Context *rsc, OStream *stream) const { in serialize() 69 ProgramStore *ProgramStore::createFromStream(Context *rsc, IStream *stream) { in createFromStream() 73 void ProgramStore::init() { in init() 83 ObjectBaseRef<ProgramStore> ProgramStore::getProgramStore(Context *rsc, in getProgramStore() 92 ObjectBaseRef<ProgramStore> returnRef; in getProgramStore() 95 ProgramStore *existing = rsc->mStateFragmentStore.mStorePrograms[ct]; in getProgramStore() [all …]
|
D | rsProgramStore.h | 38 class ProgramStore : public ProgramBase { 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;
|
D | rsContext.h | 103 ObjectBaseRef<ProgramStore> mStore; 133 void setProgramStore(ProgramStore *); 139 ProgramStore * getProgramStore() {return mFragmentStore.get();} in getProgramStore() 173 ProgramStore * getDefaultProgramStore() const { in getDefaultProgramStore() 325 ObjectBaseRef<ProgramStore> mFragmentStore;
|
D | rsScript.h | 33 class ProgramStore; variable 112 ObjectBaseRef<ProgramStore> mFragmentStore;
|
D | rs_hal.h | 90 class ProgramStore; variable 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);
|
D | rsScriptGroup.h | 33 class ProgramStore; variable
|
D | rsContext.cpp | 627 void Context::setProgramStore(ProgramStore *pfs) { in setProgramStore() 774 ProgramStore *pfs = static_cast<ProgramStore *>(vpfs); in rsi_ContextBindProgramStore()
|
D | rsFont.h | 212 ObjectBaseRef<ProgramStore> mFontProgramStore;
|
D | rsScriptC_LibGL.cpp | 69 void rsrBindProgramStore(Context *rsc, ProgramStore *ps) { in rsrBindProgramStore()
|
D | rsRuntime.h | 37 void rsrBindProgramStore(Context *, ProgramStore *);
|
D | rsFont.cpp | 536 mFontProgramStore.set(ProgramStore::getProgramStore(mRSC, true, true, true, true, in initRenderState()
|
/frameworks/base/rs/java/android/renderscript/ |
D | ProgramStore.java | 37 public class ProgramStore extends BaseObj { class 155 ProgramStore(long id, RenderScript rs) { in ProgramStore() method in ProgramStore 244 public static ProgramStore BLEND_NONE_DEPTH_TEST(RenderScript rs) { in BLEND_NONE_DEPTH_TEST() 246 ProgramStore.Builder builder = new ProgramStore.Builder(rs); in BLEND_NONE_DEPTH_TEST() 247 builder.setDepthFunc(ProgramStore.DepthFunc.LESS); in BLEND_NONE_DEPTH_TEST() 265 public static ProgramStore BLEND_NONE_DEPTH_NONE(RenderScript rs) { in BLEND_NONE_DEPTH_NONE() 267 ProgramStore.Builder builder = new ProgramStore.Builder(rs); in BLEND_NONE_DEPTH_NONE() 268 builder.setDepthFunc(ProgramStore.DepthFunc.ALWAYS); in BLEND_NONE_DEPTH_NONE() 289 public static ProgramStore BLEND_ALPHA_DEPTH_TEST(RenderScript rs) { in BLEND_ALPHA_DEPTH_TEST() 291 ProgramStore.Builder builder = new ProgramStore.Builder(rs); in BLEND_ALPHA_DEPTH_TEST() [all …]
|
D | RenderScriptGL.java | 303 public void bindProgramStore(ProgramStore p) { in bindProgramStore()
|
D | RenderScript.java | 1137 ProgramStore mProgramStore_BLEND_NONE_DEPTH_TEST; 1138 ProgramStore mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH; 1139 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_TEST; 1140 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH;
|
/frameworks/rs/driver/ |
D | rsdProgramStore.h | 24 const android::renderscript::ProgramStore *ps); 26 const android::renderscript::ProgramStore *ps); 28 const android::renderscript::ProgramStore *ps);
|
D | rsdProgramStore.cpp | 28 using android::renderscript::ProgramStore; 39 bool rsdProgramStoreInit(const Context *rsc, const ProgramStore *ps) { in rsdProgramStoreInit() 155 void rsdProgramStoreSetActive(const Context *rsc, const ProgramStore *ps) { in rsdProgramStoreSetActive() 198 void rsdProgramStoreDestroy(const Context *rsc, const ProgramStore *ps) { in rsdProgramStoreDestroy()
|
D | rsdRuntimeStubs.cpp | 48 using android::renderscript::ProgramStore; 945 rsrBindProgramStore(rsc, (ProgramStore *)ps.p);
|
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/ |
D | BallsRS.java | 86 ProgramStore BLEND_ADD_DEPTH_NONE(RenderScript rs) { in BLEND_ADD_DEPTH_NONE() 87 ProgramStore.Builder builder = new ProgramStore.Builder(rs); in BLEND_ADD_DEPTH_NONE() 88 builder.setDepthFunc(ProgramStore.DepthFunc.ALWAYS); in BLEND_ADD_DEPTH_NONE() 89 builder.setBlendFunc(ProgramStore.BlendSrcFunc.ONE, ProgramStore.BlendDstFunc.ONE); in BLEND_ADD_DEPTH_NONE()
|
/frameworks/rs/driver/runtime/ |
D | rs_structs.h | 103 typedef struct ProgramStore { struct
|
/frameworks/rs/script_api/ |
D | rs_graphics.spec | 178 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.
|
/frameworks/rs/script_api/include/ |
D | rs_graphics.rsh | 253 * rs_program_store: Handle to a ProgramStore 257 * Opaque handle to a RenderScript ProgramStore object. 258 * See: android.renderscript.ProgramStore 583 * rsgBindProgramStore: Bind a ProgramStore 587 * Bind a new ProgramStore to the rendering context.
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 60064 Landroid/renderscript/ProgramStore$BlendDstFunc;->DST_ALPHA:Landroid/renderscript/ProgramStore$Blen… 60065 Landroid/renderscript/ProgramStore$BlendDstFunc;->mID:I 60066 Landroid/renderscript/ProgramStore$BlendDstFunc;->ONE_MINUS_DST_ALPHA:Landroid/renderscript/Program… 60067 Landroid/renderscript/ProgramStore$BlendDstFunc;->ONE_MINUS_SRC_COLOR:Landroid/renderscript/Program… 60068 Landroid/renderscript/ProgramStore$BlendDstFunc;->SRC_ALPHA:Landroid/renderscript/ProgramStore$Blen… 60069 Landroid/renderscript/ProgramStore$BlendDstFunc;->SRC_COLOR:Landroid/renderscript/ProgramStore$Blen… 60070 Landroid/renderscript/ProgramStore$BlendDstFunc;->valueOf(Ljava/lang/String;)Landroid/renderscript/… 60071 Landroid/renderscript/ProgramStore$BlendDstFunc;->values()[Landroid/renderscript/ProgramStore$Blend… 60072 Landroid/renderscript/ProgramStore$BlendSrcFunc;->DST_ALPHA:Landroid/renderscript/ProgramStore$Blen… 60073 Landroid/renderscript/ProgramStore$BlendSrcFunc;->DST_COLOR:Landroid/renderscript/ProgramStore$Blen… [all …]
|