HomeSort by relevance Sort by last modified time
    Searched refs:ObjectBaseRef (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/rs/
rsObjectBase.h 99 class ObjectBaseRef {
101 ObjectBaseRef() {
105 ObjectBaseRef(const ObjectBaseRef &ref) {
112 ObjectBaseRef(T *ref) {
119 ObjectBaseRef & operator= (const ObjectBaseRef &ref) {
126 ~ObjectBaseRef() {
140 void set(const ObjectBaseRef &ref) {
rsScript.h 63 ObjectBaseRef<ProgramVertex> mVertex;
64 ObjectBaseRef<ProgramFragment> mFragment;
65 ObjectBaseRef<ProgramRaster> mRaster;
66 ObjectBaseRef<ProgramStore> mFragmentStore;
91 ObjectBaseRef<Allocation> *mSlots;
92 ObjectBaseRef<const Type> *mTypes;
rsProgram.h 74 ObjectBaseRef<Allocation> *mTextures;
75 ObjectBaseRef<Sampler> *mSamplers;
76 ObjectBaseRef<Allocation> *mConstants;
77 ObjectBaseRef<Type> *mConstantTypes;
78 ObjectBaseRef<Element> *mInputElements;
rsProgramRaster.h 53 static ObjectBaseRef<ProgramRaster> getProgramRaster(Context *rsc,
74 ObjectBaseRef<ProgramRaster> mDefault;
75 ObjectBaseRef<ProgramRaster> mLast;
rsProgramVertex.h 58 ObjectBaseRef<ProgramVertex> mDefault;
59 ObjectBaseRef<ProgramVertex> mLast;
60 ObjectBaseRef<Allocation> mDefaultAlloc;
rsFBOCache.h 56 ObjectBaseRef<Allocation> *mColorTargets;
57 ObjectBaseRef<Allocation> mDepthTarget;
rsProgramFragment.h 57 ObjectBaseRef<ProgramFragment> mDefault;
60 ObjectBaseRef<ProgramFragment> mLast;
rsProgramStore.h 65 static ObjectBaseRef<ProgramStore> getProgramStore(Context *,
91 ObjectBaseRef<ProgramStore> mDefault;
92 ObjectBaseRef<ProgramStore> mLast;
rsContext.h 82 ObjectBaseRef<ProgramFragment> mFragment;
83 ObjectBaseRef<ProgramVertex> mVertex;
84 ObjectBaseRef<ProgramStore> mStore;
85 ObjectBaseRef<ProgramRaster> mRaster;
86 ObjectBaseRef<Font> mFont;
232 ObjectBaseRef<Script> mRootScript;
233 ObjectBaseRef<ProgramFragment> mFragment;
234 ObjectBaseRef<ProgramVertex> mVertex;
235 ObjectBaseRef<ProgramStore> mFragmentStore;
236 ObjectBaseRef<ProgramRaster> mRaster
    [all...]
rsElement.h 64 ObjectBaseRef<const Element> create(Context *rsc);
66 Vector<ObjectBaseRef<const Element> > mBuilderElementRefs;
112 static ObjectBaseRef<const Element> createRef(Context *rsc,
117 static ObjectBaseRef<const Element> createRef(Context *rsc, size_t count,
128 ObjectBaseRef<const Element> elem = createRef(rsc, dt, dk, isNorm, vecSize);
137 ObjectBaseRef<const Element> elem = createRef(rsc, count, ein, nin, lengths, asin);
152 ObjectBaseRef<const Element> e;
rsMesh.h 88 ObjectBaseRef<Allocation> *mVertexBuffers;
89 ObjectBaseRef<Allocation> *mIndexBuffers;
rsSampler.h 54 static ObjectBaseRef<Sampler> getSampler(Context *,
88 ObjectBaseRef<Sampler> mSamplers[RS_MAX_SAMPLER_SLOT];
rsType.h 106 ObjectBaseRef<Type> cloneAndResize1D(Context *rsc, uint32_t dimX) const;
107 ObjectBaseRef<Type> cloneAndResize2D(Context *rsc, uint32_t dimX, uint32_t dimY) const;
109 static ObjectBaseRef<Type> getTypeRef(Context *rsc, const Element *e,
116 ObjectBaseRef<Type> type = getTypeRef(rsc, e, dimX, dimY, dimZ, dimLOD, dimFaces);
134 ObjectBaseRef<const Element> mElement;
rsFont.h 147 ObjectBaseRef<Font> mDefault;
210 ObjectBaseRef<Allocation> mFontShaderFConstant;
211 ObjectBaseRef<ProgramFragment> mFontShaderF;
212 ObjectBaseRef<Sampler> mFontSampler;
213 ObjectBaseRef<ProgramStore> mFontProgramStore;
217 ObjectBaseRef<Allocation> mTextTexture;
238 ObjectBaseRef<Mesh> mMesh;
rsProgramVertex.cpp 156 ObjectBaseRef<const Element> matrixElem = Element::createRef(rsc, RS_TYPE_MATRIX_4X4,
158 ObjectBaseRef<const Element> f2Elem = Element::createRef(rsc, RS_TYPE_FLOAT_32,
160 ObjectBaseRef<const Element> f3Elem = Element::createRef(rsc, RS_TYPE_FLOAT_32,
162 ObjectBaseRef<const Element> f4Elem = Element::createRef(rsc, RS_TYPE_FLOAT_32,
170 ObjectBaseRef<const Element> constInput = constBuilder.create(rsc);
177 ObjectBaseRef<const Element> attrElem = inputBuilder.create(rsc);
179 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1, 0, 0, false, false);
rsProgramRaster.cpp 78 ObjectBaseRef<ProgramRaster> ProgramRaster::getProgramRaster(Context *rsc,
81 ObjectBaseRef<ProgramRaster> returnRef;
107 ObjectBaseRef<ProgramRaster> pr = ProgramRaster::getProgramRaster(rsc, pointSprite, cull);
rsAdapter.h 57 ObjectBaseRef<Allocation> mAllocation;
92 ObjectBaseRef<Allocation> mAllocation;
rsProgram.cpp 40 mTextures = new ObjectBaseRef<Allocation>[mHal.state.texturesCount];
41 mSamplers = new ObjectBaseRef<Sampler>[mHal.state.texturesCount];
42 mInputElements = new ObjectBaseRef<Element>[mHal.state.inputElementsCount];
43 mConstantTypes = new ObjectBaseRef<Type>[mHal.state.constantsCount];
44 mConstants = new ObjectBaseRef<Allocation>[mHal.state.constantsCount];
rsProgramFragment.cpp 102 ObjectBaseRef<const Element> colorElem = Element::createRef(rsc, RS_TYPE_FLOAT_32, RS_KIND_USER, false, 4);
105 ObjectBaseRef<const Element> constInput = builder.create(rsc);
107 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1, 0, 0, false, false);
rsProgramStore.cpp 83 ObjectBaseRef<ProgramStore> ProgramStore::getProgramStore(Context *rsc,
92 ObjectBaseRef<ProgramStore> returnRef;
153 ObjectBaseRef<ProgramStore> ps = ProgramStore::getProgramStore(rsc,
rsSampler.cpp 78 ObjectBaseRef<Sampler> Sampler::getSampler(Context *rsc,
85 ObjectBaseRef<Sampler> returnRef;
123 ObjectBaseRef<Sampler> s = Sampler::getSampler(rsc, magFilter, minFilter,
rsMesh.cpp 58 mVertexBuffers = new ObjectBaseRef<Allocation>[mHal.state.vertexBuffersCount];
59 mIndexBuffers = new ObjectBaseRef<Allocation>[mHal.state.primitivesCount];
120 ObjectBaseRef<Allocation> *vertexBuffers = NULL;
122 vertexBuffers = new ObjectBaseRef<Allocation>[vertexBuffersCount];
131 ObjectBaseRef<Allocation> *indexBuffers = NULL;
134 indexBuffers = new ObjectBaseRef<Allocation>[primitivesCount];
rsFBOCache.cpp 30 mColorTargets = new ObjectBaseRef<Allocation>[mHal.state.colorTargetsCount];
rsFont.cpp 498 ObjectBaseRef<const Element> colorElem = Element::createRef(mRSC, RS_TYPE_FLOAT_32,
500 ObjectBaseRef<const Element> gammaElem = Element::createRef(mRSC, RS_TYPE_FLOAT_32,
505 ObjectBaseRef<const Element> constInput = builder.create(mRSC);
507 ObjectBaseRef<Type> inputType = Type::getTypeRef(mRSC, constInput.get(), 1, 0, 0, false, false);
538 ObjectBaseRef<const Element> alphaElem = Element::createRef(mRSC, RS_TYPE_UNSIGNED_8,
542 ObjectBaseRef<Type> texType = Type::getTypeRef(mRSC, alphaElem.get(),
570 ObjectBaseRef<const Element> indexElem = Element::createRef(mRSC, RS_TYPE_UNSIGNED_16, RS_KIND_USER, false, 1);
572 ObjectBaseRef<Type> indexType = Type::getTypeRef(mRSC, indexElem.get(), numIndicies, 0, 0, false, false);
595 ObjectBaseRef<const Element> posElem = Element::createRef(mRSC, RS_TYPE_FLOAT_32, RS_KIND_USER, false, 3);
596 ObjectBaseRef<const Element> texElem = Element::createRef(mRSC, RS_TYPE_FLOAT_32, RS_KIND_USER, false, 2)
    [all...]
rsElement.cpp 222 ObjectBaseRef<const Element> Element::createRef(Context *rsc, RsDataType dt, RsDataKind dk,
224 ObjectBaseRef<const Element> returnRef;
254 ObjectBaseRef<const Element> Element::createRef(Context *rsc, size_t count, const Element **ein,
257 ObjectBaseRef<const Element> returnRef;
354 mBuilderElementRefs.push(ObjectBaseRef<const Element>(e));
362 ObjectBaseRef<const Element> Element::Builder::create(Context *rsc) {

Completed in 262 milliseconds

1 2