OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRs
(Results
1 - 5
of
5
) sorted by null
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/
RenderScriptWallpaper.java
38
private RenderScriptGL
mRs
;
59
if (
mRs
!= null) {
60
mRs
.destroy();
61
mRs
= null;
80
if (
mRs
!= null) {
81
mRs
.setSurface(holder, width, height);
85
mRenderer.init(
mRs
, getResources(), isPreview());
108
mRs
= new RenderScriptGL(RenderScriptWallpaper.this, sc);
109
mRs
.setPriority(RenderScript.Priority.LOW);
/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/base/libs/hwui/
FontRenderer.cpp
733
if (
mRs
== 0) {
734
mRs
= new RSC::RS();
735
if (!
mRs
->init(RSC::RS_INIT_LOW_LATENCY | RSC::RS_INIT_SYNCHRONOUS)) {
739
mRsElement = RSC::Element::A_8(
mRs
);
740
mRsScript = RSC::ScriptIntrinsicBlur::create(
mRs
, mRsElement);
743
RSC::sp<const RSC::Type> t = RSC::Type::create(
mRs
, mRsElement, width, height, 0);
744
RSC::sp<RSC::Allocation> ain = RSC::Allocation::createTyped(
mRs
, t,
747
RSC::sp<RSC::Allocation> aout = RSC::Allocation::createTyped(
mRs
, t,
FontRenderer.h
211
RSC::sp<RSC::RS>
mRs
;
Completed in 127 milliseconds