Searched defs:createTyped (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/rs/java/android/renderscript/
H A DAllocationAdapter.java234 return createTyped(rs, a, t);
241 return createTyped(rs, a, t);
266 static public AllocationAdapter createTyped(RenderScript rs, Allocation a, Type t) { method in class:AllocationAdapter
H A DAllocation.java1878 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { method in class:Allocation
1880 Trace.traceBegin(RenderScript.TRACE_TAG, "createTyped");
1906 static public Allocation createTyped(RenderScript rs, Type type, int usage) { method in class:Allocation
1907 return createTyped(rs, type, MipmapControl.MIPMAP_NONE, usage);
1919 static public Allocation createTyped(RenderScript rs, Type type) { method in class:Allocation
1920 return createTyped(rs, type, MipmapControl.MIPMAP_NONE, USAGE_SCRIPT);
2226 Allocation cubemap = Allocation.createTyped(rs, t, mips, usage);
/frameworks/rs/cpp/
H A DAllocation.cpp425 sp<Allocation> Allocation::createTyped(sp<RS> rs, sp<const Type> type, function in class:Allocation
438 sp<Allocation> Allocation::createTyped(sp<RS> rs, sp<const Type> type, function in class:Allocation
453 sp<Allocation> Allocation::createTyped(sp<RS> rs, sp<const Type> type, function in class:Allocation
455 return createTyped(rs, type, RS_ALLOCATION_MIPMAP_NONE, usage);
464 return createTyped(rs, t, usage);
474 return createTyped(rs, t, usage);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocation.java1732 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { method in class:Allocation
1760 static public Allocation createTyped(RenderScript rs, Type type, int usage) { method in class:Allocation
1761 return createTyped(rs, type, MipmapControl.MIPMAP_NONE, usage);
1773 static public Allocation createTyped(RenderScript rs, Type type) { method in class:Allocation
1774 return createTyped(rs, type, MipmapControl.MIPMAP_NONE, USAGE_SCRIPT);
2045 Allocation cubemap = Allocation.createTyped(rs, t, mips, usage);

Completed in 148 milliseconds