Searched defs:mips (Results 1 - 10 of 10) sorted by relevance

/frameworks/rs/cpp/
H A DAllocation.cpp316 RsAllocationMipmapControl mips, uint32_t usage) {
319 id = RS::dispatch->AllocationCreateTyped(rs->getContext(), type->getID(), mips, usage, 0);
329 RsAllocationMipmapControl mips, uint32_t usage,
333 id = RS::dispatch->AllocationCreateTyped(rs->getContext(), type->getID(), mips, usage,
315 createTyped(sp<RS> rs, sp<const Type> type, RsAllocationMipmapControl mips, uint32_t usage) argument
328 createTyped(sp<RS> rs, sp<const Type> type, RsAllocationMipmapControl mips, uint32_t usage, void *pointer) argument
/frameworks/rs/
H A DrsType.cpp298 uint32_t dimY, uint32_t dimZ, bool mips, bool faces, uint32_t yuv) {
301 return Type::getType(rsc, e, dimX, dimY, dimZ, mips, faces, yuv);
297 rsi_TypeCreate(Context *rsc, RsElement _e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mips, bool faces, uint32_t yuv) argument
H A DrsAllocation.cpp595 RsAllocationMipmapControl mips,
597 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mips, (void*)ptr);
606 RsAllocationMipmapControl mips,
610 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
619 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
628 RsAllocationMipmapControl mips,
635 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
657 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
594 rsi_AllocationCreateTyped(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, uint32_t usages, uintptr_t ptr) argument
605 rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, const void *data, size_t sizeBytes, uint32_t usages) argument
627 rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, const void *data, size_t sizeBytes, uint32_t usages) argument
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocationThunker.java380 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { argument
387 convertMipmapControl(mips),
396 MipmapControl mips,
403 convertMipmapControl(mips),
414 MipmapControl mips,
420 rst.mN, b, convertMipmapControl(mips), usage);
435 MipmapControl mips,
442 convertMipmapControl(mips), usage);
453 MipmapControl mips,
460 rst.mN, res, id, convertMipmapControl(mips), usag
395 createFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
413 createCubemapFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
428 createCubemapFromCubeFaces(RenderScript rs, Bitmap xpos, Bitmap xneg, Bitmap ypos, Bitmap yneg, Bitmap zpos, Bitmap zneg, MipmapControl mips, int usage) argument
450 createFromBitmapResource(RenderScript rs, Resources res, int id, MipmapControl mips, int usage) argument
[all...]
H A DAllocation.java1199 * @param mips specifies desired mipmap behaviour for the
1204 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { argument
1207 return AllocationThunker.createTyped(rst, type, mips, usage);
1213 int id = rs.nAllocationCreateTyped(type.getID(rs), mips.mID, usage, 0);
1322 * @param mips specifies desired mipmap behaviour for the
1331 MipmapControl mips,
1335 return AllocationThunker.createFromBitmap(rst, b, mips, usage);
1347 return createFromBitmap(rs, newBitmap, mips, usage);
1350 Type t = typeFromBitmap(rs, b, mips);
1353 if (mips
1330 createFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
1407 createCubemapFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
1478 createCubemapFromCubeFaces(RenderScript rs, Bitmap xpos, Bitmap xneg, Bitmap ypos, Bitmap yneg, Bitmap zpos, Bitmap zneg, MipmapControl mips, int usage) argument
1574 createFromBitmapResource(RenderScript rs, Resources res, int id, MipmapControl mips, int usage) argument
[all...]
H A DRenderScript.java214 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
215 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
217 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
253 native int rsnAllocationCreateFromAssetStream(int con, int mips, int assetStream, int usage); argument
254 synchronized int nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) { argument
256 return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage);
/frameworks/base/graphics/java/android/renderscript/
H A DAllocation.java1364 * @param mips specifies desired mipmap behaviour for the
1369 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { argument
1375 int id = rs.nAllocationCreateTyped(type.getID(rs), mips.mID, usage, 0);
1483 * @param mips specifies desired mipmap behaviour for the
1492 MipmapControl mips,
1505 return createFromBitmap(rs, newBitmap, mips, usage);
1508 Type t = typeFromBitmap(rs, b, mips);
1511 if (mips == MipmapControl.MIPMAP_NONE &&
1514 int id = rs.nAllocationCreateBitmapBackedAllocation(t.getID(rs), mips.mID, b, usage);
1526 int id = rs.nAllocationCreateFromBitmap(t.getID(rs), mips
1491 createFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
1609 createCubemapFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
1680 createCubemapFromCubeFaces(RenderScript rs, Bitmap xpos, Bitmap xneg, Bitmap ypos, Bitmap yneg, Bitmap zpos, Bitmap zneg, MipmapControl mips, int usage) argument
1773 createFromBitmapResource(RenderScript rs, Resources res, int id, MipmapControl mips, int usage) argument
[all...]
H A DRenderScript.java326 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
327 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
329 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
365 native int rsnAllocationCreateFromAssetStream(int con, int mips, int assetStream, int usage); argument
366 synchronized int nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) { argument
368 return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage);
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp309 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv)
311 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
312 con, eid, dimx, dimy, dimz, mips, faces, yuv);
314 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv);
321 nAllocationCreateTyped(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mips, jint usage, jint pointer) argument
323 LOG_API("nAllocationCreateTyped, con(%p), type(%p), mip(%i), usage(%i), ptr(%p)", con, (RsElement)type, mips, usage, (void *)pointer);
324 return (jint) rsAllocationCreateTyped(con, (RsType)type, (RsAllocationMipmapControl)mips, (uint32_t)usage, (uint32_t)pointer);
308 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid, jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv) argument
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp429 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv)
431 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
432 con, eid, dimx, dimy, dimz, mips, faces, yuv);
434 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv);
459 nAllocationCreateTyped(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mips, jint usage, jint pointer) argument
461 LOG_API("nAllocationCreateTyped, con(%p), type(%p), mip(%i), usage(%i), ptr(%p)", con, (RsElement)type, mips, usage, (void *)pointer);
462 return (jint) rsAllocationCreateTyped(con, (RsType)type, (RsAllocationMipmapControl)mips, (uint32_t)usage, (uint32_t)pointer);
428 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid, jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv) argument

Completed in 154 milliseconds