Home
last modified time | relevance | path

Searched refs:mip (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/rs/java/android/renderscript/
DRenderScript.java450 native long rsnAllocationCreateTyped(long con, long type, int mip, int usage, long pointer); in rsnAllocationCreateTyped() argument
451 synchronized long nAllocationCreateTyped(long type, int mip, int usage, long pointer) { in nAllocationCreateTyped() argument
453 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer); in nAllocationCreateTyped()
456 native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, in rsnAllocationCreateFromBitmap() argument
458 synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) { in nAllocationCreateFromBitmap() argument
460 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage); in nAllocationCreateFromBitmap()
463 native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, in rsnAllocationCreateBitmapBackedAllocation() argument
465 synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, in nAllocationCreateBitmapBackedAllocation() argument
468 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage); in nAllocationCreateBitmapBackedAllocation()
471 native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, in rsnAllocationCubeCreateFromBitmap() argument
[all …]
DAllocation.java2775 MipmapControl mip) { in typeFromBitmap() argument
2780 tb.setMipmaps(mip == MipmapControl.MIPMAP_FULL); in typeFromBitmap()
/frameworks/rs/support/java/src/androidx/renderscript/
DRenderScript.java392 native long rsnAllocationCreateTyped(long con, long type, int mip, int usage, long pointer); in rsnAllocationCreateTyped() argument
393 synchronized long nAllocationCreateTyped(long type, int mip, int usage, long pointer) { in nAllocationCreateTyped() argument
395 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer); in nAllocationCreateTyped()
397 native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage); in rsnAllocationCreateFromBitmap() argument
398 synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) { in nAllocationCreateFromBitmap() argument
400 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage); in nAllocationCreateFromBitmap()
403 …native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, i… in rsnAllocationCreateBitmapBackedAllocation() argument
404 …synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, int usag… in nAllocationCreateBitmapBackedAllocation() argument
406 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage); in nAllocationCreateBitmapBackedAllocation()
410 …native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage… in rsnAllocationCubeCreateFromBitmap() argument
[all …]
DAllocation.java2663 MipmapControl mip) { in typeFromBitmap() argument
2668 tb.setMipmaps(mip == MipmapControl.MIPMAP_FULL); in typeFromBitmap()
/frameworks/rs/script_api/
Drs_allocation_data.spec76 arg: uint32_t srcMip, "Mip level in the source allocation. 0 if mip mapping is not used."
/frameworks/rs/
DrsType.h66 Type * createTex2D(const Element *, size_t w, size_t h, bool mip);
/frameworks/rs/support/jni/
Dandroid_renderscript_RenderScript.cpp1078 nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, jlong con, jlong type, jint mip, in nAllocationCreateFromBitmap() argument
1088 … (RsAllocationMipmapControl)mip, in nAllocationCreateFromBitmap()
1099 jint mip, jobject jbitmap, jint usage) in nAllocationCreateBitmapBackedAllocation() argument
1108 (RsAllocationMipmapControl)mip, in nAllocationCreateBitmapBackedAllocation()
1118 jint mip, jobject jbitmap, jint usage) in nAllocationCubeCreateFromBitmap() argument
1127 … (RsAllocationMipmapControl)mip, in nAllocationCubeCreateFromBitmap()
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp1327 nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, jlong con, jlong type, jint mip, in nAllocationCreateFromBitmap() argument
1333 (RsType)type, (RsAllocationMipmapControl)mip, in nAllocationCreateFromBitmap()
1340 jint mip, jobject jbitmap, jint usage) in nAllocationCreateBitmapBackedAllocation() argument
1345 (RsType)type, (RsAllocationMipmapControl)mip, in nAllocationCreateBitmapBackedAllocation()
1351 nAllocationCubeCreateFromBitmap(JNIEnv *_env, jobject _this, jlong con, jlong type, jint mip, in nAllocationCubeCreateFromBitmap() argument
1357 (RsType)type, (RsAllocationMipmapControl)mip, in nAllocationCubeCreateFromBitmap()
/frameworks/rs/script_api/include/
Drs_allocation_data.rsh60 * dstMip: Mip level in the destination allocation. 0 if mip mapping is not used.
64 * srcMip: Mip level in the source allocation. 0 if mip mapping is not used.
95 * dstMip: Mip level in the destination allocation. 0 if mip mapping is not used.
102 * srcMip: Mip level in the source allocation. 0 if mip mapping is not used.
2657 …* lod: Mip level to sample from, for fractional values mip levels will be interpolated if RS_SAM…