Lines Matching refs:mips
428 … Allocation(long id, RenderScript rs, Type t, boolean owningType, int usage, MipmapControl mips) { in Allocation() argument
431 mMipmapControl = mips; in Allocation()
2668 … static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { in createTyped() argument
2676 long id = rs.nAllocationCreateTyped(type.getID(rs), mips.mID, usage, 0); in createTyped()
2680 return new Allocation(id, rs, type, false, usage, mips); in createTyped()
2798 MipmapControl mips, in createFromBitmap() argument
2812 return createFromBitmap(rs, newBitmap, mips, usage); in createFromBitmap()
2815 Type t = typeFromBitmap(rs, b, mips); in createFromBitmap()
2818 if (mips == MipmapControl.MIPMAP_NONE && in createFromBitmap()
2821 … long id = rs.nAllocationCreateBitmapBackedAllocation(t.getID(rs), mips.mID, b, usage); in createFromBitmap()
2827 Allocation alloc = new Allocation(id, rs, t, true, usage, mips); in createFromBitmap()
2833 long id = rs.nAllocationCreateFromBitmap(t.getID(rs), mips.mID, b, usage); in createFromBitmap()
2837 return new Allocation(id, rs, t, true, usage, mips); in createFromBitmap()
2939 MipmapControl mips = alloc.getMipmap(); in createFromAllocation() local
2940 long id = rs.nAllocationCreateTyped(type.getID(rs), mips.mID, usage, 0); in createFromAllocation()
2944 Allocation outAlloc = new Allocation(id, rs, type, false, usage, mips); in createFromAllocation()
3090 MipmapControl mips, in createCubemapFromBitmap() argument
3113 tb.setMipmaps(mips == MipmapControl.MIPMAP_FULL); in createCubemapFromBitmap()
3116 long id = rs.nAllocationCubeCreateFromBitmap(t.getID(rs), mips.mID, b, usage); in createCubemapFromBitmap()
3120 return new Allocation(id, rs, t, true, usage, mips); in createCubemapFromBitmap()
3167 MipmapControl mips, in createCubemapFromCubeFaces() argument
3188 tb.setMipmaps(mips == MipmapControl.MIPMAP_FULL); in createCubemapFromCubeFaces()
3190 Allocation cubemap = Allocation.createTyped(rs, t, mips, usage); in createCubemapFromCubeFaces()
3256 MipmapControl mips, in createFromBitmapResource() argument
3264 Allocation alloc = createFromBitmap(rs, b, mips, usage); in createFromBitmapResource()