SKPixelGeometry 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.
Describes how LCD strips are organized for each pixel.
public enum SKPixelGeometry
- Inheritance
-
SKPixelGeometry
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | Use if the order is not known or the pixels are meant to be "portable" and/or transformed before showing (e.g. rotated, scaled). |
RgbHorizontal | 1 | Pixels are made up horizontal red, green and blue lights. |
BgrHorizontal | 2 | Pixels are made up horizontal blue, green and red lights. |
RgbVertical | 3 | Pixels are made up vertical red, green and blue lights. |
BgrVertical | 4 | Pixels are made up vertical blue, green and red lights. |
Remarks
Description of how the LCD strips are arranged for each pixel. If this is unknown, or the pixels are meant to be "portable" and/or transformed before showing (e.g. rotated, scaled) then use Unknown.