Home | History | Annotate | Download | only in hwui

Lines Matching refs:camera

23 import android.graphics.Camera;
40 private Camera mCamera;
47 mCamera = new Camera();
59 final Camera camera = mCamera;
63 rotate(centerX, centerY, camera, matrix, 32.0f);
66 rotate(centerX, centerY, camera, matrix, 12.0f);
69 rotate(centerX, centerY, camera, matrix, 52.0f);
72 rotate(centerX, centerY, camera, matrix, 122.0f);
86 private void rotate(float centerX, float centerY, Camera camera,
88 camera.save();
89 camera.rotateY(angle);
90 camera.getMatrix(matrix);
91 camera.restore();