Home | History | Annotate | Download | only in renderscript

Lines Matching defs:rs

27     Light(int id, RenderScript rs) {
28 super(rs);
47 public Builder(RenderScript rs) {
48 mRS = rs;
61 static synchronized Light internalCreate(RenderScript rs, Builder b) {
62 rs.nSamplerBegin();
63 rs.nLightSetIsMono(b.mIsMono);
64 rs.nLightSetIsLocal(b.mIsLocal);
65 int id = rs.nLightCreate();
66 return new Light(id, rs);