Searched defs:dimY (Results 1 - 9 of 9) sorted by relevance

/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);
108 t->mDimY = dimY;
/frameworks/rs/driver/runtime/
H A Drs_allocation.c15 return alloc->mHal.drvState.lod[0].dimY;
111 const uint32_t dimY = alloc->mHal.drvState.lod[0].dimY; local
113 (z * stride * dimY)];
185 const uint32_t dimY = alloc->mHal.drvState.lod[0].dimY; local
186 return &p[(eSize * x) + (y * stride) + (z * stride * dimY)];
211 const uint32_t dimY = alloc->mHal.drvState.lod[0].dimY; local
212 memcpy((void*)&p[(eSize * x) + (y * stride) + (z * stride * dimY)], pt
[all...]
H A Drs_structs.h51 uint32_t dimY; member in struct:Allocation::__anon1619::DrvState::LodState
222 uint32_t dimY; member in struct:Type::__anon1629::__anon1630
/frameworks/rs/
H A DrsType.h45 uint32_t dimY; member in struct:android::renderscript::Type::Hal::State
67 uint32_t getDimY() const {return mHal.state.dimY;}
98 ObjectBaseRef<Type> cloneAndResize2D(Context *rsc, uint32_t dimX, uint32_t dimY) const;
101 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
105 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
107 ObjectBaseRef<Type> type = getTypeRef(rsc, e, dimX, dimY, dimZ, dimLOD, dimFaces, yuv);
H A DrsAllocation.h80 uint32_t dimY; member in struct:android::renderscript::Allocation::Hal::DrvState::LodState
112 void resize2D(Context *rsc, uint32_t dimX, uint32_t dimY);
H A DrsType.cpp69 uint32_t l2y = rsFindHighBit(mHal.state.dimY) + 1;
89 uint32_t ty = mHal.state.dimY;
139 mHal.state.dimY,
155 stream->addU32(mHal.state.dimY);
207 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
218 if (t->getDimY() != dimY) continue;
235 nt->mHal.state.dimY = dimY;
255 uint32_t dimY) const {
256 return getTypeRef(rsc, mElement.get(), dimX, dimY,
206 getTypeRef(Context *rsc, const Element *e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool dimLOD, bool dimFaces, uint32_t dimYuv) argument
297 rsi_TypeCreate(Context *rsc, RsElement _e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mips, bool faces, uint32_t yuv) argument
[all...]
H A Drs_hal.h64 uint32_t dimY; member in struct:android::renderscript::__anon1649
H A DrsAllocation.cpp206 if (y >= mHal.drvState.lod[0].dimY) {
457 void Allocation::resize2D(Context *rsc, uint32_t dimX, uint32_t dimY) { argument
589 void rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) { argument
591 a->resize2D(rsc, dimX, dimY);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DRenderScript.java439 native void rsnAllocationResize2D(int con, int id, int dimX, int dimY); argument
440 synchronized void nAllocationResize2D(int id, int dimX, int dimY) { argument
442 rsnAllocationResize2D(mContext, id, dimX, dimY);

Completed in 314 milliseconds