Lines Matching refs:GrUniqueKey
16 GrUniqueKey* key) { in compute_key_for_line_path()
26 static const GrUniqueKey::Domain kOvalPathDomain = GrUniqueKey::GenerateDomain(); in compute_key_for_line_path()
27 GrUniqueKey::Builder builder(key, kOvalPathDomain, kBaseData32Cnt + strokeDataCnt); in compute_key_for_line_path()
37 GrUniqueKey* key) { in compute_key_for_oval_path()
48 static const GrUniqueKey::Domain kOvalPathDomain = GrUniqueKey::GenerateDomain(); in compute_key_for_oval_path()
49 GrUniqueKey::Builder builder(key, kOvalPathDomain, kBaseData32Cnt + strokeDataCnt); in compute_key_for_oval_path()
62 GrUniqueKey* key) { in compute_key_for_simple_path()
113 static const GrUniqueKey::Domain kSimpleVolatilePathDomain = GrUniqueKey::GenerateDomain(); in compute_key_for_simple_path()
114 GrUniqueKey::Builder builder(key, kSimpleVolatilePathDomain, baseData32Cnt + strokeDataCnt); in compute_key_for_simple_path()
163 GrUniqueKey* key) { in compute_key_for_general_path()
166 static const GrUniqueKey::Domain kGeneralPathDomain = GrUniqueKey::GenerateDomain(); in compute_key_for_general_path()
167 GrUniqueKey::Builder builder(key, kGeneralPathDomain, kBaseData32Cnt + strokeDataCnt); in compute_key_for_general_path()
177 void GrPath::ComputeKey(const SkPath& path, const GrStrokeInfo& stroke, GrUniqueKey* key, in ComputeKey()