Searched refs:genMips (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
H A DAllocation.java52 public void uploadToTexture(boolean genMips, int baseMipLevel) { argument
54 mRS.nAllocationUploadToTexture(mID, genMips, baseMipLevel);
291 static public Allocation createFromBitmap(RenderScript rs, Bitmap b, Element dstFmt, boolean genMips) argument
297 int id = rs.nAllocationCreateFromBitmap(dstFmt.mID, genMips, b);
320 static Allocation createFromBitmapBoxed(RenderScript rs, Bitmap b, Element dstFmt, boolean genMips) argument
324 int id = rs.nAllocationCreateFromBitmapBoxed(dstFmt.mID, genMips, b);
331 static public Allocation createFromBitmapResource(RenderScript rs, Resources res, int id, Element dstFmt, boolean genMips) argument
341 int allocationId = rs.nAllocationCreateFromAssetStream(dstFmt.mID, genMips,
363 static public Allocation createFromBitmapResourceBoxed(RenderScript rs, Resources res, int id, Element dstFmt, boolean genMips) argument
378 return createFromBitmapBoxed(rs, b, dstFmt, genMips);
[all...]
H A DRenderScript.java100 native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp); argument
102 native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp); argument
103 native int nAllocationCreateFromAssetStream(int dstFmt, boolean genMips, int assetStream); argument
105 native void nAllocationUploadToTexture(int alloc, boolean genMips, int baseMioLevel); argument
/frameworks/base/libs/rs/
H A DrsAllocation.cpp524 RsAllocation rsi_AllocationCreateFromBitmap(Context *rsc, uint32_t w, uint32_t h, RsElement _dst, RsElement _src, bool genMips, const void *data) argument
532 //LOGE("rsi_AllocationCreateFromBitmap %i %i %i %i %i", w, h, dstFmt, srcFmt, genMips);
536 if (genMips) {
551 if (genMips) {
564 RsAllocation rsi_AllocationCreateFromBitmapBoxed(Context *rsc, uint32_t w, uint32_t h, RsElement _dst, RsElement _src, bool genMips, const void *data) argument
572 return rsi_AllocationCreateFromBitmap(rsc, w, h, _dst, _src, genMips, data);
587 RsAllocation ret = rsi_AllocationCreateFromBitmap(rsc, w2, h2, _dst, _src, genMips, tmp);
H A Drs.spec111 param bool genMips
121 param bool genMips
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp483 nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, jint dstFmt, jboolean genMips, jobject jbitmap) argument
497 jint id = (jint)rsAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr);
525 nAllocationCreateFromAssetStream(JNIEnv *_env, jobject _this, jint dstFmt, jboolean genMips, jint native_asset) argument
543 jint id = (jint)rsAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr);
551 nAllocationCreateFromBitmapBoxed(JNIEnv *_env, jobject _this, jint dstFmt, jboolean genMips, jobject jbitmap) argument
566 jint id = (jint)rsAllocationCreateFromBitmapBoxed(con, w, h, (RsElement)dstFmt, e, genMips, ptr);

Completed in 81 milliseconds