Lines Matching refs:geometry
17 struct Geometry {
33 /** The layout of the pixel specifies its subpixel geometry.
79 static Geometry MakeDefault() {
82 Geometry ret = { SkToU8(orientation | layout) };
86 static Geometry Make(Orientation orientation, Layout layout) {
87 Geometry ret = { SkToU8(orientation | layout) };
95 SkDeviceProperties ret = { Geometry::MakeDefault(), SK_GAMMA_EXPONENT };
99 static SkDeviceProperties Make(Geometry geometry, SkScalar gamma) {
100 SkDeviceProperties ret = { geometry, gamma };
106 Geometry fGeometry;