Searched defs:dimY (Results 1 - 10 of 10) 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/
H A DrsType.h45 uint32_t dimY; member in struct:android::renderscript::Type::Hal::State
69 uint32_t getDimY() const {return mHal.state.dimY;}
100 ObjectBaseRef<Type> cloneAndResize2D(Context *rsc, uint32_t dimX, uint32_t dimY) const;
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 DrsAllocation.h80 uint32_t dimY; member in struct:android::renderscript::Allocation::Hal::DrvState::LodState
114 void resize2D(Context *rsc, uint32_t dimX, uint32_t dimY);
H A DrsType.cpp76 uint32_t l2y = rsFindHighBit(mHal.state.dimY) + 1;
100 uint32_t ty = mHal.state.dimY;
153 mHal.state.dimY,
169 stream->addU32(mHal.state.dimY);
221 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
232 if (t->getDimY() != dimY) continue;
261 nt->mHal.state.dimY = dimY;
281 uint32_t dimY) const {
282 return getTypeRef(rsc, mElement.get(), dimX, dimY,
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.cpp109 if ((stride != NULL) && mHal.drvState.lod[0].dimY) {
225 if (y >= mHal.drvState.lod[0].dimY) {
484 void Allocation::resize2D(Context *rsc, uint32_t dimX, uint32_t dimY) { argument
630 void rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) { argument
632 a->resize2D(rsc, dimX, dimY);
/frameworks/base/rs/java/android/renderscript/
H A DType.java242 * @param dimY The Y dimension, must be > 0
246 static public Type createXY(RenderScript rs, Element e, int dimX, int dimY) { argument
247 if ((dimX < 1) || (dimY < 1)) {
251 long id = rs.nTypeCreate(e.getID(rs), dimX, dimY, 0, false, false, 0);
255 t.mDimY = dimY;
267 * @param dimY The Y 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);
281 t.mDimY = dimY;
[all...]
/frameworks/rs/driver/runtime/
H A Drs_allocation.c14 return alloc->mHal.drvState.lod[0].dimY;
113 const uint32_t dimY = alloc->mHal.drvState.lod[0].dimY; local
115 (z * stride * dimY)];
128 const uint32_t dimY = alloc->mHal.drvState.lod[0].dimY; local
131 (z * stride * dimY)];
212 const uint32_t dimY = alloc->mHal.drvState.lod[0].dimY; local
213 return &p[(eSize * x) + (y * stride) + (z * stride * dimY)];
238 const uint32_t dimY = alloc->mHal.drvState.lod[0].dimY; local
[all...]
H A Drs_structs.h55 uint32_t dimY; member in struct:Allocation::__anon1498::DrvState::LodState
240 uint32_t dimY; member in struct:Type::__anon1508::__anon1509
/frameworks/rs/cpu_ref/
H A DrsCpuCore.h60 uint32_t dimY; member in struct:android::renderscript::__anon1483
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DRenderScript.java520 native void rsnAllocationResize2D(int con, int id, int dimX, int dimY); argument
521 synchronized void nAllocationResize2D(int id, int dimX, int dimY) { argument
523 rsnAllocationResize2D(mContext, id, dimX, dimY);

Completed in 2382 milliseconds