Home | History | Annotate | Download | only in filterfw

Lines Matching refs:orientation

131         public void onUpdateCameraOrientation(int orientation) {
132 if (orientation % 180 != 0) {
306 public void onUpdateCameraOrientation(int orientation) {
307 super.onUpdateCameraOrientation(orientation);
308 mRunner.mCamera.setDisplayOrientation(orientation);
633 public void onUpdateCameraOrientation(int orientation) {
634 super.onUpdateCameraOrientation(orientation);
636 switch (orientation) {
651 switch (orientation) {
803 /** The camera and screen orientation. */
1260 mCamOrientation = cameraInfo.orientation;
1377 private void onUpdateOrientation(int orientation) {
1380 ? (mCamOrientation + orientation) % 360
1381 : (mCamOrientation - orientation + 360) % 360;
1388 // We compensate for mirroring in the orientation. This differs from the rotation,
1561 * Use this, if your Activity supports multiple display orientation, and you would like the
1562 * camera to update accordingly when the orientation is changed.