/frameworks/rs/cpp/ |
D | Script.cpp | 57 void Script::FieldBase::init(sp<RS> rs, uint32_t dimx, uint32_t usages) { in init() argument 58 mAllocation = Allocation::createSized(rs, mElement, dimx, RS_ALLOCATION_USAGE_SCRIPT | usages); in init()
|
D | rsCppStructs.h | 1352 void init(sp<RS> rs, uint32_t dimx, uint32_t usages = 0);
|
/frameworks/base/graphics/java/android/renderscript/ |
D | Script.java | 316 protected void init(RenderScript rs, int dimx) { in init() argument 317 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT); in init() 320 protected void init(RenderScript rs, int dimx, int usages) { in init() argument 321 … mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages); in init()
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
D | Script.java | 438 protected void init(RenderScript rs, int dimx) { in init() argument 439 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT); in init() 442 protected void init(RenderScript rs, int dimx, int usages) { in init() argument 443 … mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages); in init()
|
/frameworks/support/v8/renderscript/jni/ |
D | android_renderscript_RenderScript.cpp | 309 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv) in nTypeCreate() argument 312 con, eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate() 314 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate()
|
/frameworks/base/graphics/jni/ |
D | android_renderscript_RenderScript.cpp | 429 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv) in nTypeCreate() argument 432 con, eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate() 434 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate()
|