Sprache

BufferTransform Enum

Definition

Specifies a transform applied to a buffer before it is displayed.

public enum BufferTransform
type BufferTransform = 
Inheritance
BufferTransform

Fields

Name Value Description
Identity 0

Applies the identity transformation to buffer content.

MirrorHorizontal 1

Applies the mirror horizontal transformation to buffer content.

MirrorVertical 2

Applies the mirror vertical transformation to buffer content.

Rotate180 3

Applies the rotate 180 transformation to buffer content.

Rotate90 4

Applies the rotate 90 transformation to buffer content.

MirrorHorizontalRotate90 5

Mirror horizontally and rotate 90 degrees clock-wise. Equivalent to (BUFFER_TRANSFORM_MIRROR_HORIZONTAL | BUFFER_TRANSFORM_ROTATE_90).

Android reference for android.view.SurfaceControl.BUFFER_TRANSFORM_MIRROR_HORIZONTAL_ROTATE_90.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

MirrorVerticalRotate90 6

Mirror vertically and rotate 90 degrees clock-wise. Equivalent to (BUFFER_TRANSFORM_MIRROR_VERTICAL | BUFFER_TRANSFORM_ROTATE_90).

Android reference for android.view.SurfaceControl.BUFFER_TRANSFORM_MIRROR_VERTICAL_ROTATE_90.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Rotate270 7

Applies the rotate 270 transformation to buffer content.

Applies to