Home | History | Annotate | Download | only in jni

Lines Matching refs:rot90

95     int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) {
106 rot90 %= 4;
107 if (rot90 == 0) {
109 } else if (rot90 == 1) {
111 } else if (rot90 == 2) {
113 } else if (rot90 == 3) {
320 /** Rotation (multiple of 90). For example, rot90 = 1 implies a 90 degree
322 int rot90) {
328 rot90 %= 4;
330 if (rot90 == 1) {
333 } else if (rot90 == 3) {
352 cropLeft, cropTop, cropRight, cropBottom, rot90);
355 cropLeft / 2, cropTop / 2, cropRight / 2, cropBottom / 2, rot90);