Searched refs:dimZ (Results 1 - 15 of 15) sorted by relevance

/frameworks/rs/
H A DrsType.h46 uint32_t dimZ; member in struct:android::renderscript::Type::Hal::State
70 uint32_t getDimZ() const {return mHal.state.dimZ;}
103 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
107 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
109 ObjectBaseRef<Type> type = getTypeRef(rsc, e, dimX, dimY, dimZ, dimLOD, dimFaces, yuv);
H A DrsType.cpp77 uint32_t l2z = rsFindHighBit(mHal.state.dimZ) + 1;
101 uint32_t tz = mHal.state.dimZ;
154 mHal.state.dimZ,
170 stream->addU32(mHal.state.dimZ);
221 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
233 if (t->getDimZ() != dimZ) continue;
262 nt->mHal.state.dimZ = dimZ;
331 uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv) {
334 return Type::getType(rsc, e, dimX, dimY, dimZ, mipmap
220 getTypeRef(Context *rsc, const Element *e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool dimLOD, bool dimFaces, uint32_t dimYuv) argument
330 rsi_TypeCreate(Context *rsc, RsElement _e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv) argument
[all...]
H A DrsAllocation.h81 uint32_t dimZ; member in struct:android::renderscript::Allocation::Hal::DrvState::LodState
H A Drs.spec39 param uint32_t dimZ
H A DrsAllocation.cpp101 (z && (z >= mHal.drvState.lod[lod].dimZ)) ||
/frameworks/rs/cpp/
H A DType.cpp102 sp<const Type> Type::create(sp<RS> rs, sp<const Element> e, uint32_t dimX, uint32_t dimY, uint32_t dimZ) { argument
103 void * id = RS::dispatch->TypeCreate(rs->getContext(), e->getID(), dimX, dimY, dimZ, false, false, 0);
109 t->mDimZ = dimZ;
H A DrsCppStructs.h1294 * @param[in] dimZ Z dimension
1297 static sp<const Type> create(sp<RS> rs, sp<const Element> e, uint32_t dimX, uint32_t dimY, uint32_t dimZ);
/frameworks/rs/driver/runtime/
H A Drs_structs.h56 uint32_t dimZ; member in struct:Allocation::__anon1498::DrvState::LodState
241 uint32_t dimZ; member in struct:Type::__anon1508::__anon1509
H A Drs_allocation.c20 return alloc->mHal.drvState.lod[0].dimZ;
/frameworks/base/rs/java/android/renderscript/
H A DType.java268 * @param dimZ The Z dimension, must be > 0
272 static public Type createXYZ(RenderScript rs, Element e, int dimX, int dimY, int dimZ) { argument
273 if ((dimX < 1) || (dimY < 1) || (dimZ < 1)) {
277 long id = rs.nTypeCreate(e.getID(rs), dimX, dimY, dimZ, false, false, 0);
282 t.mDimZ = dimZ;
/frameworks/rs/cpu_ref/
H A DrsCpuScript.cpp819 mtls->fep.dimZ = inType->getDimZ();
826 mtls->fep.dimZ = outType->getDimZ();
865 mtls->zEnd = mtls->fep.dimZ;
867 rsAssert(sc->zStart < mtls->fep.dimZ);
868 rsAssert(sc->zEnd <= mtls->fep.dimZ);
870 mtls->zStart = rsMin(mtls->fep.dimZ, sc->zStart);
871 mtls->zEnd = rsMin(mtls->fep.dimZ, sc->zEnd);
940 mtls->fep.dimZ = inType->getDimZ();
956 mtls->fep.dimZ = outType->getDimZ();
995 mtls->zEnd = mtls->fep.dimZ;
[all...]
H A DrsCpuCore.h61 uint32_t dimZ; member in struct:android::renderscript::__anon1483
H A DrsCpuIntrinsic3DLUT.cpp76 static_cast<int>(cp->mLUT->mHal.drvState.lod[0].dimZ - 1),
H A DrsCpuCore.cpp469 uint32_t offset = mtls->fep.dimY * mtls->fep.dimZ * p.ar[0] +
549 uint32_t offset_invariant = mtls->fep.dimY * mtls->fep.dimZ * p.ar[0];
/frameworks/rs/driver/
H A DrsdAllocation.cpp307 alloc->mHal.drvState.lod[0].dimZ = type->getDimZ();
319 rsMax(alloc->mHal.drvState.lod[0].dimZ, 1u);
329 uint32_t tz = alloc->mHal.drvState.lod[0].dimZ;
333 alloc->mHal.drvState.lod[lod].dimZ = tz;

Completed in 2005 milliseconds