HomeSort by relevance Sort by last modified time
    Searched defs:mRs (Results 1 - 10 of 10) sorted by null

  /packages/wallpapers/Basic/src/com/android/wallpaper/
RenderScriptWallpaper.java 34 private RenderScriptGL mRs;
55 if (mRs != null) {
56 mRs.setSurface(null, 0, 0);
57 mRs.destroy();
58 mRs = null;
77 if (mRs != null) {
78 mRs.setSurface(holder, width, height);
82 mRenderer.init(mRs, getResources(), isPreview());
100 mRs = new RenderScriptGL(RenderScriptWallpaper.this, sc);
101 mRs.setPriority(RenderScript.Priority.LOW)
    [all...]
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
RenderScriptWallpaper.java 38 private RenderScriptGL mRs;
60 if (mRs != null) {
61 mRs.destroy();
62 mRs = null;
81 if (mRs != null) {
82 mRs.setSurface(holder, width, height);
86 mRenderer.init(mRs, getResources(), isPreview());
104 mRs = new RenderScriptGL(RenderScriptWallpaper.this, sc);
105 mRs.setPriority(RenderScript.Priority.LOW);
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
BasicPipeline.java 53 scriptC_rasterize = new ScriptC_rasterize(state.mRs);
61 state.mRs.finish();
RsBrickedBitMask.java 59 Type.Builder b = new Type.Builder(state.mRs, android.renderscript.Element.U32(state.mRs));
61 mBrick_allocation = Allocation.createTyped(state.mRs, b.create(), Allocation.USAGE_SCRIPT);
63 scriptC_bricked = new ScriptC_bricked(state.mRs);
69 scriptC_bricked.set_opacity(state.mMaterial.getOpacityAllocation(state.mRs));
70 state.mRs.finish();
74 Allocation tmp = Allocation.createTyped(state.mRs, b.create(), Allocation.USAGE_SCRIPT);
VrState.java 29 public RenderScript mRs;
42 mRs = src.mRs;
60 if (mRs == null) {
72 Type.Builder b = new Type.Builder(mRs, Element.RGBA_8888(mRs));
76 mScrAllocation = Allocation.createTyped(mRs, b.create(),
91 Type.Builder b = new Type.Builder(mRs, Element.F32_2(mRs));
95 mzRangeFullAllocation = Allocation.createTyped(mRs, b.create());
    [all...]
VrPipline1.java 56 scriptC_vr.set_opacity(state.mMaterial.getOpacityAllocation(state.mRs));
60 scriptC_vr.set_color_map(state.mMaterial.getColorMapAllocation(state.mRs));
73 scriptC_vr = new ScriptC_vr(state.mRs);
76 script_resize = ScriptIntrinsicResize.create(state.mRs);
115 state.mRs.finish();
  /frameworks/base/libs/hwui/
FontRenderer.h 188 RSC::sp<RSC::RS> mRs;
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/
VrActivity.java 53 private RenderScript mRs;
61 mRs = RenderScript.create(VrActivity.this);
100 return mLoader.getVolume(mRs, names[0]);
113 mVrView.setVolume(mRs, v);
VrView.java 306 mState1.mRs = rs;
363 if (mState1.mRs == null) return 0L;
420 state.mRs.finish();
464 mState1.mRs.finish();
  /frameworks/rs/api/
GenerateTestFiles.cpp 78 GeneratedFile* mRs;
177 mRs(rsFile),
312 *mJava << "createRandomFloatAllocation(mRS, Element.DataType." << dataType << ", "
319 *mJava << "createRandomAllocation(mRS, Element.DataType." << dataType << ", " << vectorSize
329 << "(mRS, Element.DataType." << dataType << ", " << vectorSize << ", " << seed << ", ";
361 << "(mRS, Element.DataType." << dataType << ", " << vectorSize << ", " << seed << ", ";
381 mJava->indent() << "Allocation " << param.javaAllocName << " = Allocation.createSized(mRS, "
382 << "getElement(mRS, Element.DataType." << dataType << ", " << vectorSize
807 *mRs << "\n";
811 *mRs << mReturnParam->rsType
    [all...]

Completed in 95 milliseconds