Home | History | Annotate | Download | only in core

Lines Matching defs:Orientation

18         /** The orientation of the pixel specifies the interpretation of the
19 * layout. If the orientation is horizontal, the layout is interpreted as
20 * left to right. It the orientation is vertical, the layout is
23 enum Orientation {
48 Orientation getOrientation() {
49 return static_cast<Orientation>(fGeometry | kOrientationMask);
64 static Orientation fromOldOrientation(SkFontHost::LCDOrientation orientation) {
65 switch (orientation) {
80 Orientation orientation = fromOldOrientation(SkFontHost::GetSubpixelOrientation()); //kHorizontal_Orientation
82 Geometry ret = { SkToU8(orientation | layout) };
86 static Geometry Make(Orientation orientation, Layout layout) {
87 Geometry ret = { SkToU8(orientation | layout) };