BufferTransform Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 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 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. |