Searched defs:mOpacity (Results 1 - 6 of 6) sorted by last modified time

/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
H A DMaterial.java76 public Opactiy[] mOpacity = new Opactiy[0]; field in class:Material
134 mOpacity = new Opactiy[2];
135 mOpacity[0] = new Opactiy();
136 mOpacity[0].mPos = start;
137 mOpacity[0].mValue = 0;
139 mOpacity[1] = new Opactiy();
140 mOpacity[1].mPos = end;
141 mOpacity[1].mValue = 1;
168 mOpacity = new Opactiy[opacity.length];
170 mOpacity[
[all...]
H A DVolume.java55 return mLooks.get(name).mOpacity;
67 Log.v(LOGTAG, "mOpacity "+l.dblArrayToString(l.mOpacity));
72 int[][] mOpacity; field in class:Volume.Look
84 mOpacity = new int[opacitySplit.length][];
87 mOpacity[i] = readNumbers(opacitySplit[i]);
93 mOpacity = opacity;
121 return "mColor=" + dblArrayToString(mColor) + "\nmOpacity=" + dblArrayToString(mOpacity);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java688 int mOpacity; field in class:DrawableContainer.DrawableContainerState
758 mOpacity = orig.mOpacity;
1125 return mOpacity;
1139 mOpacity = op;
H A DLayerDrawable.java1916 private int mOpacity; field in class:LayerDrawable.LayerState
1945 mOpacity = orig.mOpacity;
2044 return mOpacity;
2074 mOpacity = op;
H A DRippleBackground.java50 private float mOpacity = 0; field in class:RippleBackground
63 return mOpacity > 0 || isHardwareAnimating();
71 final int alpha = (int) (origAlpha * mOpacity + 0.5f);
92 final int duration = (int) ((1 - mOpacity) * maxDuration);
116 (int) ((1 - mOpacity) * OPACITY_ENTER_DURATION_FAST) : 0;
134 final int currentAlpha = (int) (mOpacity * targetAlpha + 0.5f);
143 (int) ((1 - mOpacity) * OPACITY_ENTER_DURATION_FAST) : 0;
170 mOpacity = 0;
182 object.mOpacity = value;
188 return object.mOpacity;
[all...]
H A DRippleForeground.java76 private float mOpacity = 1; field in class:RippleForeground
115 final int alpha = (int) (origAlpha * mOpacity + 0.5f);
215 return (int) (1000 * mOpacity / WAVE_OPACITY_DECAY_VELOCITY + 0.5f);
287 p.setAlpha((int) (p.getAlpha() * mOpacity + 0.5f));
323 mOpacity = 0;
425 object.mOpacity = value;
431 return object.mOpacity;

Completed in 218 milliseconds