Home
last modified time | relevance | path

Searched refs:fDepth (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/bench/
DCanvasSaveRestoreBench.cpp13 CanvasSaveRestoreBench(int depth) : fDepth(depth) { in CanvasSaveRestoreBench()
14 fName.printf("canvas_save_restore_%d", fDepth); in CanvasSaveRestoreBench()
26 for (int j = 0; j < fDepth; ++j) { in onDraw()
31 for (int j = 0; j < fDepth; ++j) { in onDraw()
38 const int fDepth; member in CanvasSaveRestoreBench
/third_party/flutter/skia/samplecode/
DSampleThinAA.cpp90 if (fDepth > 0.f) { in name()
91 name.appendf("-curve-%.2f", fDepth); in name()
93 } else if (fDepth > 0.f) { in name()
94 name.appendf("curve-%.2f", fDepth); in name()
95 } else if (fDepth < 0.f) { in name()
96 name.appendf("line-%.2f", -fDepth); in name()
105 return sk_sp<ShapeRenderer>(new PathRenderer(fDepth, true)); in toHairline()
112 if (fDepth > 0.f) { in draw()
113 path.quadTo(kTileWidth / 2.f + fDepth, kTileHeight / 2.f, in draw()
116 if (fDepth < 0.f) { in draw()
[all …]
DSampleImageFilterDAG.cpp42 int fDepth; member
109 return fDepth == 1 && !fRemainingCTM.isIdentity(); in isImplicitMatrixNode()
216 node.fDepth = depth; in build_dag()
282 if (node.fDepth == 0) { in draw_node()
388 if (node.fDepth == 0) { in print_info()
/third_party/skia/samplecode/
DSampleThinAA.cpp88 if (fDepth > 0.f) { in name()
89 name.appendf("-curve-%.2f", fDepth); in name()
91 } else if (fDepth > 0.f) { in name()
92 name.appendf("curve-%.2f", fDepth); in name()
93 } else if (fDepth < 0.f) { in name()
94 name.appendf("line-%.2f", -fDepth); in name()
103 return sk_sp<ShapeRenderer>(new PathRenderer(fDepth, true)); in toHairline()
110 if (fDepth > 0.f) { in draw()
111 path.quadTo(kTileWidth / 2.f + fDepth, kTileHeight / 2.f, in draw()
114 if (fDepth < 0.f) { in draw()
[all …]
DSampleImageFilterDAG.cpp42 int fDepth; member
67 , fDepth(depth) in FilterNode()
220 if (node.fDepth == 0) { in print_info()
/third_party/skia/experimental/graphite/src/
DDrawOrder.h134 , fDepth(originalOrder) {} in DrawOrder()
138 PaintersDepth depth() const { return fDepth; } in depth()
159 PaintersDepth fDepth; variable
/third_party/skia/src/pathops/
DSkIntersections.h22 , fDepth(0) in SkIntersections()
220 SkASSERT(--fDepth >= 0); in downDepth()
234 SkASSERT(++fDepth < 16); in upDepth()
290 return fDepth; in depth()
326 int fDepth; variable
/third_party/flutter/skia/src/pathops/
DSkIntersections.h22 , fDepth(0) in SkIntersections()
220 SkASSERT(--fDepth >= 0); in downDepth()
234 SkASSERT(++fDepth < 16); in upDepth()
290 return fDepth; in depth()
326 int fDepth; variable
/third_party/flutter/skia/src/ports/
DSkFontMgr_config_parser.cpp80 , fDepth(1) in FamilyData()
94 int fDepth; // The current element depth of the parse. member
431 self->fSkip = self->fDepth; in start_element_handler()
435 ++self->fDepth; in start_element_handler()
441 --self->fDepth; in end_element_handler()
453 if (self->fSkip == self->fDepth) { in end_element_handler()
DSkFontMgr_android_parser.cpp99 , fDepth(1) in FamilyData()
113 int fDepth; // The current element depth of the parse. member
582 self->fSkip = self->fDepth; in start_element_handler()
586 ++self->fDepth; in start_element_handler()
591 --self->fDepth; in end_element_handler()
603 if (self->fSkip == self->fDepth) { in end_element_handler()
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DSampler.cpp170 mipmap.fDepth[0] = (float)depth / 65536.0f; in setTextureLevel()
171 mipmap.fDepth[1] = (float)depth / 65536.0f; in setTextureLevel()
172 mipmap.fDepth[2] = (float)depth / 65536.0f; in setTextureLevel()
173 mipmap.fDepth[3] = (float)depth / 65536.0f; in setTextureLevel()
DSampler.hpp30 float4 fDepth; member
/third_party/skia/src/ports/
DSkFontMgr_android_parser.cpp101 , fDepth(1) in FamilyData()
115 int fDepth; // The current element depth of the parse. member
592 self->fSkip = self->fDepth; in start_element_handler()
596 ++self->fDepth; in start_element_handler()
601 --self->fDepth; in end_element_handler()
613 if (self->fSkip == self->fDepth) { in end_element_handler()
/third_party/skia/src/sksl/
DSkSLDSLParser.cpp48 , fDepth(0) {} in AutoDSLDepth()
51 fParser->fDepth -= fDepth; in ~AutoDSLDepth()
55 ++fDepth; in increase()
56 ++fParser->fDepth; in increase()
57 if (fParser->fDepth > kMaxParseDepth) { in increase()
66 int fDepth; member in SkSL::AutoDSLDepth
DSkSLDSLParser.h344 int fDepth = 0; variable
/third_party/flutter/skia/src/sksl/
DSkSLParser.h276 int fDepth = 0; variable
DSkSLParser.cpp27 fParser->fDepth++; in AutoDepth()
31 fParser->fDepth--; in ~AutoDepth()
35 if (fParser->fDepth > MAX_PARSE_DEPTH) { in checkValid()