Home | History | Annotate | Download | only in jni

Lines Matching refs:eid

428 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid,
431 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
432 con, eid, dimx, dimy, dimz, mips, faces, yuv);
434 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv);
1234 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, RsContext con, jint id, jint eid)
1236 LOG_API("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", con, id, (void *)eid);
1237 return (jint)rsScriptIntrinsicCreate(con, id, (RsElement)eid);