Lines Matching refs:face

149                       RsAllocationCubemapFace face) {  in GetOffsetPtr()  argument
151 ptr += face * alloc->mHal.drvState.faceOffset; in GetOffsetPtr()
159 void mip565(const Allocation *alloc, int lod, RsAllocationCubemapFace face) { in mip565() argument
164 uint16_t *oPtr = (uint16_t *)GetOffsetPtr(alloc, 0, y, 0, lod + 1, face); in mip565()
166 (uint16_t *)GetOffsetPtr(alloc, 0, 0, y * 2, lod, face); in mip565()
168 (uint16_t *)GetOffsetPtr(alloc, 0, 0, y * 2 + 1, lod, face); in mip565()
179 void mip8888(const Allocation *alloc, int lod, RsAllocationCubemapFace face) { in mip8888() argument
184 uint32_t *oPtr = (uint32_t *)GetOffsetPtr(alloc, 0, y, 0, lod + 1, face); in mip8888()
186 (uint32_t *)GetOffsetPtr(alloc, 0, y * 2, 0, lod, face); in mip8888()
188 (uint32_t *)GetOffsetPtr(alloc, 0, y * 2 + 1, 0, lod, face); in mip8888()
199 void mip8(const Allocation *alloc, int lod, RsAllocationCubemapFace face) { in mip8() argument
204 uint8_t *oPtr = GetOffsetPtr(alloc, 0, y, 0, lod + 1, face); in mip8()
205 const uint8_t *i1 = GetOffsetPtr(alloc, 0, y * 2, 0, lod, face); in mip8()
206 const uint8_t *i2 = GetOffsetPtr(alloc, 0, y * 2 + 1, 0, lod, face); in mip8()
339 RsAllocationCubemapFace face, uint32_t w, uint32_t h, in rsovAllocationData2D() argument
349 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face); in rsovAllocationData2D()
374 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face); in rsovAllocationData2D()
432 RsAllocationCubemapFace face, uint32_t w, uint32_t h, in rsovAllocationRead2D() argument
442 const uint8_t *src = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face); in rsovAllocationRead2D()
625 for (uint32_t face = 0; face < numFaces; face++) { in rsovAllocationGenerateMipmaps() local
629 mip8888(alloc, lod, (RsAllocationCubemapFace)face); in rsovAllocationGenerateMipmaps()
632 mip565(alloc, lod, (RsAllocationCubemapFace)face); in rsovAllocationGenerateMipmaps()
635 mip8(alloc, lod, (RsAllocationCubemapFace)face); in rsovAllocationGenerateMipmaps()