Home | History | Annotate | Download | only in core

Lines Matching defs:Orientation

9         /** The orientation of the pixel specifies the interpretation of the
10 * layout. If the orientation is horizontal, the layout is interpreted as
11 * left to right. It the orientation is vertical, the layout is
14 enum Orientation {
39 Orientation getOrientation() {
40 return static_cast<Orientation>(fGeometry & kOrientationMask);
55 static Orientation fromOldOrientation(SkFontLCDConfig::LCDOrientation orientation) {
56 switch (orientation) {
71 Orientation orientation = fromOldOrientation(SkFontLCDConfig::GetSubpixelOrientation()); //kHorizontal_Orientation
73 Geometry ret = { SkToU8(orientation | layout) };
77 static Geometry Make(Orientation orientation, Layout layout) {
78 Geometry ret = { SkToU8(orientation | layout) };