Searched defs:mip (Results 1 - 7 of 7) sorted by relevance

/frameworks/native/opengl/libagl/
H A DTextureObjectManager.cpp106 const GGLSurface& EGLTextureObject::mip(int lod) const function in class:android::EGLTextureObject
116 return const_cast<GGLSurface&>(mip(lod));
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocation.java1290 MipmapControl mip) {
1295 tb.setMipmaps(mip == MipmapControl.MIPMAP_FULL);
1289 typeFromBitmap(RenderScript rs, Bitmap b, MipmapControl mip) argument
H A DRenderScript.java219 native int rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer); argument
220 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) { argument
222 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
224 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage); argument
225 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) { argument
227 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
230 native int rsnAllocationCreateBitmapBackedAllocation(int con, int type, int mip, Bitmap bmp, int usage); argument
231 synchronized int nAllocationCreateBitmapBackedAllocation(int type, int mip, Bitmap bmp, int usage) { argument
233 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
237 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitma argument
238 nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) argument
289 rsnAllocationData1D(int con, int id, int off, int mip, int count, int[] d, int sizeBytes) argument
290 nAllocationData1D(int id, int off, int mip, int count, int[] d, int sizeBytes) argument
294 rsnAllocationData1D(int con, int id, int off, int mip, int count, short[] d, int sizeBytes) argument
295 nAllocationData1D(int id, int off, int mip, int count, short[] d, int sizeBytes) argument
299 rsnAllocationData1D(int con, int id, int off, int mip, int count, byte[] d, int sizeBytes) argument
300 nAllocationData1D(int id, int off, int mip, int count, byte[] d, int sizeBytes) argument
304 rsnAllocationData1D(int con, int id, int off, int mip, int count, float[] d, int sizeBytes) argument
305 nAllocationData1D(int id, int off, int mip, int count, float[] d, int sizeBytes) argument
310 rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
311 nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
336 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) argument
337 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) argument
341 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) argument
342 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) argument
346 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) argument
347 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) argument
351 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
352 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
356 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
357 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
380 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
381 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
385 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
386 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
390 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
391 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
395 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
396 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DAllocation.java1369 MipmapControl mip) {
1374 tb.setMipmaps(mip == MipmapControl.MIPMAP_FULL);
1368 typeFromBitmap(RenderScript rs, Bitmap b, MipmapControl mip) argument
H A DRenderScript.java286 native int rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer); argument
287 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) { argument
289 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
291 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage); argument
292 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) { argument
294 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
297 native int rsnAllocationCreateBitmapBackedAllocation(int con, int type, int mip, Bitmap bmp, int usage); argument
298 synchronized int nAllocationCreateBitmapBackedAllocation(int type, int mip, Bitmap bmp, int usage) { argument
300 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
304 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitma argument
305 nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) argument
366 rsnAllocationData1D(int con, int id, int off, int mip, int count, int[] d, int sizeBytes) argument
367 nAllocationData1D(int id, int off, int mip, int count, int[] d, int sizeBytes) argument
371 rsnAllocationData1D(int con, int id, int off, int mip, int count, short[] d, int sizeBytes) argument
372 nAllocationData1D(int id, int off, int mip, int count, short[] d, int sizeBytes) argument
376 rsnAllocationData1D(int con, int id, int off, int mip, int count, byte[] d, int sizeBytes) argument
377 nAllocationData1D(int id, int off, int mip, int count, byte[] d, int sizeBytes) argument
381 rsnAllocationData1D(int con, int id, int off, int mip, int count, float[] d, int sizeBytes) argument
382 nAllocationData1D(int id, int off, int mip, int count, float[] d, int sizeBytes) argument
387 rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
388 nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
413 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) argument
414 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) argument
418 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) argument
419 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) argument
423 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) argument
424 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) argument
428 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
429 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
433 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
434 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
457 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
458 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
462 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
463 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
467 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
468 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
472 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
473 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
[all...]
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp323 LOG_API("nAllocationCreateTyped, con(%p), type(%p), mip(%i), usage(%i), ptr(%p)", con, (RsElement)type, mips, usage, (void *)pointer);
355 nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage) argument
363 (RsType)type, (RsAllocationMipmapControl)mip,
371 nAllocationCreateBitmapBackedAllocation(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage) argument
379 (RsType)type, (RsAllocationMipmapControl)mip,
387 nAllocationCubeCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage) argument
395 (RsType)type, (RsAllocationMipmapControl)mip,
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp462 LOG_API("nAllocationCreateTyped, con(%p), type(%p), mip(%i), usage(%i), ptr(%p)", con, (RsElement)type, mips, usage, (void *)pointer);
523 nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage) argument
532 (RsType)type, (RsAllocationMipmapControl)mip,
539 nAllocationCreateBitmapBackedAllocation(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage) argument
548 (RsType)type, (RsAllocationMipmapControl)mip,
555 nAllocationCubeCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage) argument
564 (RsType)type, (RsAllocationMipmapControl)mip,

Completed in 61 milliseconds