HomeSort by relevance Sort by last modified time
    Searched full:mcompensation (Results 1 - 2 of 2) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLRootView.java 81 // mCompensation is the difference between the UI orientation on GLCanvas
83 private int mCompensation;
85 // with mCompensation.
237 if (mCompensation != compensation) {
238 mCompensation = compensation;
239 if (mCompensation % 180 != 0) {
240 mCompensationMatrix.setRotate(mCompensation);
246 mCompensationMatrix.setRotate(mCompensation, w / 2, h / 2);
252 if (mCompensation % 180 != 0) {
258 + " (compensation " + mCompensation + ")")
    [all...]
PhotoView.java 204 private int mCompensation = 0;
484 || mCompensation != compensation) {
486 mCompensation = compensation;
513 if (mCompensation % 180 != 0) {
524 switch (mCompensation) {
531 Log.d(TAG, "compensation = " + mCompensation
549 return (mCompensation - mDisplayRotation + 360) % 360;
565 return (mCompensation + 180) % 360;
567 return mCompensation;
580 void forceSize(); // called when mCompensation change
    [all...]

Completed in 580 milliseconds