Home
last modified time | relevance | path

Searched refs:flipped (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/utils/
DCoordinateTransforms.java108 final boolean flipped = info.rotation == ROTATION_90 || info.rotation == ROTATION_270; in transformToRotation()
109 final int h = flipped ? info.logicalWidth : info.logicalHeight; in transformToRotation()
110 final int w = flipped ? info.logicalHeight : info.logicalWidth; in transformToRotation()
130 final boolean flipped = newRotation == ROTATION_90 || newRotation == ROTATION_270; in transformToRotation()
131 final int h = flipped ? newWidth : newHeight; in transformToRotation()
132 final int w = flipped ? newHeight : newWidth; in transformToRotation()
/frameworks/native/opengl/libs/ETC1/
Detc1.cpp168 etc1_uint32 low, bool second, bool flipped) { in decode_subblock() argument
172 if (flipped) { in decode_subblock()
180 if (flipped) { in decode_subblock()
228 bool flipped = (high & 1) != 0; in etc1_decode_block() local
229 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped); in etc1_decode_block()
230 decode_subblock(pOut, r2, g2, b2, tableB, low, true, flipped); in etc1_decode_block()
248 etc1_byte* pColors, bool flipped, bool second) { in etc_average_colors_subblock() argument
253 if (flipped) { in etc_average_colors_subblock()
336 etc_compressed* pCompressed, bool flipped, bool second, in etc_encode_subblock_helper() argument
339 if (flipped) { in etc_encode_subblock_helper()
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DSeamlessRotator.java64 final boolean flipped = info.rotation == ROTATION_90 || info.rotation == ROTATION_270; in SeamlessRotator()
65 final int pH = flipped ? info.logicalWidth : info.logicalHeight; in SeamlessRotator()
66 final int pW = flipped ? info.logicalHeight : info.logicalWidth; in SeamlessRotator()
DScreenRotationAnimation.java179 final boolean flipped = delta == Surface.ROTATION_90 || delta == Surface.ROTATION_270; in ScreenRotationAnimation()
180 mOriginalWidth = flipped ? originalHeight : originalWidth; in ScreenRotationAnimation()
181 mOriginalHeight = flipped ? originalWidth : originalHeight; in ScreenRotationAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DScreenDecorations.java946 boolean flipped = mInfo.rotation == ROTATION_90 || mInfo.rotation == ROTATION_270; in updateBoundingPath()
948 int dw = flipped ? lh : lw; in updateBoundingPath()
949 int dh = flipped ? lw : lh; in updateBoundingPath()