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.java2664 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { method in class:Allocation
2666 Trace.traceBegin(RenderScript.TRACE_TAG, "createTyped");
2693 static public Allocation createTyped(RenderScript rs, Type type, int usage) { method in class:Allocation
2694 return createTyped(rs, type, MipmapControl.MIPMAP_NONE, usage);
2706 static public Allocation createTyped(RenderScript rs, Type type) { method in class:Allocation
2707 return createTyped(rs, type, MipmapControl.MIPMAP_NONE, USAGE_SCRIPT);
2895 mAllocationArray[0] = createTyped(rs, t, usage);
3185 Allocation cubemap = Allocation.createTyped(rs, t, mips, usage);
/frameworks/rs/cpp/
H A DAllocation.cpp424 sp<Allocation> Allocation::createTyped(sp<RS> rs, sp<const Type> type, function in class:Allocation
437 sp<Allocation> Allocation::createTyped(sp<RS> rs, sp<const Type> type, function in class:Allocation
452 sp<Allocation> Allocation::createTyped(sp<RS> rs, sp<const Type> type, function in class:Allocation
454 return createTyped(rs, type, RS_ALLOCATION_MIPMAP_NONE, usage);
463 return createTyped(rs, t, usage);
473 return createTyped(rs, t, usage);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocation.java2557 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { method in class:Allocation
2585 static public Allocation createTyped(RenderScript rs, Type type, int usage) { method in class:Allocation
2586 return createTyped(rs, type, MipmapControl.MIPMAP_NONE, usage);
2598 static public Allocation createTyped(RenderScript rs, Type type) { method in class:Allocation
2599 return createTyped(rs, type, MipmapControl.MIPMAP_NONE, USAGE_SCRIPT);
2870 Allocation cubemap = Allocation.createTyped(rs, t, mips, usage);

Completed in 153 milliseconds