Home | History | Annotate | Download | only in renderscript

Lines Matching refs:mip

286     native int  rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer);
287 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) {
289 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
291 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
292 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
294 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
297 native int rsnAllocationCreateBitmapBackedAllocation(int con, int type, int mip, Bitmap bmp, int usage);
298 synchronized int nAllocationCreateBitmapBackedAllocation(int type, int mip, Bitmap bmp, int usage) {
300 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
304 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
305 synchronized int nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
307 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
366 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, int[] d, int sizeBytes);
367 synchronized void nAllocationData1D(int id, int off, int mip, int count, int[] d, int sizeBytes) {
369 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
371 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, short[] d, int sizeBytes);
372 synchronized void nAllocationData1D(int id, int off, int mip, int count, short[] d, int sizeBytes) {
374 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
376 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, byte[] d, int sizeBytes);
377 synchronized void nAllocationData1D(int id, int off, int mip, int count, byte[] d, int sizeBytes) {
379 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
381 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, float[] d, int sizeBytes);
382 synchronized void nAllocationData1D(int id, int off, int mip, int count, float[] d, int sizeBytes) {
384 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
387 native void rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes);
388 synchronized void nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) {
390 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
413 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
414 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) {
416 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
418 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes);
419 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) {
421 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
423 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes);
424 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
426 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
428 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes);
429 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) {
431 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
433 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b);
434 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) {
436 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
457 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes);
458 synchronized void nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) {
460 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes);
462 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes);
463 synchronized void nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) {
465 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes);
467 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes);
468 synchronized void nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) {
470 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes);
472 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes);
473 synchronized void nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) {
475 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes);