HomeSort by relevance Sort by last modified time
    Searched refs:speedY (Results 1 - 5 of 5) sorted by null

  /external/replicaisland/src/com/replica/replicaisland/
ScrollerComponent.java 35 public ScrollerComponent(float speedX, float speedY, int width, int height, Texture texture) {
38 setup(speedX, speedY, width, height);
43 public ScrollerComponent(float speedX, float speedY, int width, int height, TiledVertexGrid grid) {
46 setup(speedX, speedY, width, height);
70 public void setScrollSpeed(float speedX, float speedY) {
72 mSpeedY = speedY;
75 public void setup(float speedX, float speedY, int width, int height) {
77 mSpeedY = speedY;
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
CanvasTextureViewActivity.java 84 float speedY = 3.0f;
101 if (y + 20.0f + speedY >= mSurface.getHeight() || y + speedY <= 0.0f) {
102 speedY = -speedY;
106 y += speedY;
HardwareCanvasSurfaceViewActivity.java 87 float speedY = 3.0f;
104 if (y + 20.0f + speedY >= mHeight || y + speedY <= 0.0f) {
105 speedY = -speedY;
109 y += speedY;
HardwareCanvasTextureViewActivity.java 87 float speedY = 3.0f;
104 if (y + 20.0f + speedY >= mView.getHeight() || y + speedY <= 0.0f) {
105 speedY = -speedY;
109 y += speedY;
  /packages/apps/Camera2/src/com/android/camera/widget/
FilmstripView.java     [all...]

Completed in 1030 milliseconds