• Home
  • Raw
  • Download

Lines Matching refs:lod

170 void * Allocation::getPointer(const Context *rsc, uint32_t lod, RsAllocationCubemapFace face,  in getPointer()  argument
173 if ((lod >= mHal.drvState.lodCount) || in getPointer()
174 (z && (z >= mHal.drvState.lod[lod].dimZ)) || in getPointer()
182 mRSC->mHal.funcs.allocation.getPointer(rsc, this, lod, face, z, array); in getPointer()
186 if ((stride != nullptr) && mHal.drvState.lod[0].dimY) { in getPointer()
187 *stride = mHal.drvState.lod[lod].stride; in getPointer()
189 return mHal.drvState.lod[lod].mallocPtr; in getPointer()
192 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t lod, in data() argument
205 rsc->mHal.funcs.allocation.data1D(rsc, this, xoff, lod, count, data, sizeBytes); in data()
209 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemap… in data() argument
211 …rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride); in data()
216 uint32_t lod, in data() argument
218 …rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stri… in data()
222 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t lod, in read() argument
235 rsc->mHal.funcs.allocation.read1D(rsc, this, xoff, lod, count, data, sizeBytes); in read()
238 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemap… in read() argument
253 …rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride); in read()
256 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, in read() argument
264 …rsc->mHal.funcs.allocation.read3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stri… in read()
272 if (x >= mHal.drvState.lod[0].dimX) { in elementData()
277 if (y > 0 && y >= mHal.drvState.lod[0].dimY) { in elementData()
282 if (z > 0 && z >= mHal.drvState.lod[0].dimZ) { in elementData()
307 if (x >= mHal.drvState.lod[0].dimX) { in elementRead()
312 if (y > 0 && y >= mHal.drvState.lod[0].dimY) { in elementRead()
317 if (z > 0 && z >= mHal.drvState.lod[0].dimZ) { in elementRead()
362 prefix, mHal.drvState.lod[0].mallocPtr, mHal.state.usageFlags, mHal.state.mipmapControl); in dumpLOGV()
560 uint32_t oldDimX = mHal.drvState.lod[0].dimX; in resize1D()
723 void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, in rsi_Allocation1DData() argument
726 a->data(rsc, xoff, lod, count, data, sizeBytes); in rsi_Allocation1DData()
730 uint32_t lod, const void *data, size_t sizeBytes, size_t eoff) { in rsi_Allocation1DElementData() argument
736 uint32_t lod, const void *data, size_t sizeBytes, size_t eoff) { in rsi_AllocationElementData() argument
741 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod in rsi_Allocation2DData() argument
744 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes, stride); in rsi_Allocation2DData()
747 …ion3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, in rsi_Allocation3DData() argument
750 a->data(rsc, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride); in rsi_Allocation3DData()
929 uint32_t lod, RsAllocationCubemapFace face, in rsi_AllocationGetPointer() argument
934 return alloc->getPointer(rsc, lod, face, z, array, stride); in rsi_AllocationGetPointer()
937 void rsi_Allocation1DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, in rsi_Allocation1DRead() argument
940 rsc->mHal.funcs.allocation.read1D(rsc, a, xoff, lod, count, data, sizeBytes); in rsi_Allocation1DRead()
944 uint32_t lod, void *data, size_t sizeBytes, size_t eoff) { in rsi_AllocationElementRead() argument
950 uint32_t lod, RsAllocationCubemapFace face, uint32_t w, in rsi_Allocation2DRead() argument
953 a->read(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes, stride); in rsi_Allocation2DRead()
958 uint32_t lod, uint32_t w, uint32_t h, uint32_t d, in rsi_Allocation3DRead() argument
961 a->read(rsc, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride); in rsi_Allocation3DRead()