Home
last modified time | relevance | path

Searched refs:getLODOffset (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/libs/rs/
DrsType.h47 … uint32_t getLODOffset(uint32_t lod) const {rsAssert(lod < mLODCount); return mLODs[lod].mOffset;} in getLODOffset() function
48 uint32_t getLODOffset(uint32_t lod, uint32_t x) const;
49 uint32_t getLODOffset(uint32_t lod, uint32_t x, uint32_t y) const;
50 uint32_t getLODOffset(uint32_t lod, uint32_t x, uint32_t y, uint32_t z) const;
DrsType.cpp112 uint32_t Type::getLODOffset(uint32_t lod, uint32_t x) const { in getLODOffset() function in Type
118 uint32_t Type::getLODOffset(uint32_t lod, uint32_t x, uint32_t y) const { in getLODOffset() function in Type
124 uint32_t Type::getLODOffset(uint32_t lod, uint32_t x, uint32_t y, uint32_t z) const { in getLODOffset() function in Type
DrsAdapter.cpp44 ptr += mAllocation->getType()->getLODOffset(mLOD, x, mY); in getElement()
148 ptr += mAllocation->getType()->getLODOffset(mLOD, x, y); in getElement()
/frameworks/base/libs/rs/driver/
DrsdAllocation.cpp439 ptr += alloc->getType()->getLODOffset(lod, xoff, yoff); in getOffsetPtr()