Home | History | Annotate | Download | only in core

Lines Matching defs:Geometry

8     struct Geometry {
24 /** The layout of the pixel specifies its subpixel geometry.
70 static Geometry MakeDefault() {
73 Geometry ret = { SkToU8(orientation | layout) };
77 static Geometry Make(Orientation orientation, Layout layout) {
78 Geometry ret = { SkToU8(orientation | layout) };
86 SkDeviceProperties ret = { Geometry::MakeDefault(), SK_GAMMA_EXPONENT };
90 static SkDeviceProperties Make(Geometry geometry, SkScalar gamma) {
91 SkDeviceProperties ret = { geometry, gamma };
97 Geometry fGeometry;