Searched refs:DrawOptions (Results 1 – 11 of 11) sorted by relevance
/external/skia/tools/fiddle/ |
D | fiddle_main.h | 39 struct DrawOptions { struct 40 DrawOptions(int w, int h, bool r, bool g, bool p, bool k, bool srgb, bool f16, in DrawOptions() function 87 extern DrawOptions GetDrawOptions(); argument
|
D | draw.cpp | 15 DrawOptions GetDrawOptions() { in GetDrawOptions() 18 return DrawOptions(256, 256, true, true, true, true, true, false, false, path, in GetDrawOptions()
|
D | fiddle_main.cpp | 122 const DrawOptions& options) { in setup_backend_objects() 218 DrawOptions options = GetDrawOptions(); in main()
|
/external/skqp/tools/fiddle/ |
D | fiddle_main.h | 38 struct DrawOptions { struct 39 DrawOptions(int w, int h, bool r, bool g, bool p, bool k, bool srgb, bool f16, in DrawOptions() function 88 extern DrawOptions GetDrawOptions(); argument
|
D | draw.cpp | 13 DrawOptions GetDrawOptions() { in GetDrawOptions() 16 return DrawOptions(256, 256, true, true, true, true, true, false, false, path, in GetDrawOptions()
|
D | fiddle_main.cpp | 120 const DrawOptions& options) { in setup_backend_objects() 240 DrawOptions options = GetDrawOptions(); in main()
|
/external/skia/modules/skparagraph/include/ |
D | ParagraphStyle.h | 122 DrawOptions getDrawOptions() { return fDrawingOptions; } in getDrawOptions() 123 void setDrawOptions(DrawOptions value) { fDrawingOptions = value; } in setDrawOptions() 136 DrawOptions fDrawingOptions = DrawOptions::kDirect;
|
D | DartTypes.h | 147 enum class DrawOptions { enum
|
/external/skia/modules/skparagraph/src/ |
D | ParagraphImpl.cpp | 216 if (fParagraphStyle.getDrawOptions() == DrawOptions::kDirect) { in paint() 228 if (fParagraphStyle.getDrawOptions() == DrawOptions::kReplay) { in paint()
|
/external/skia/modules/skparagraph/samples/ |
D | SampleParagraph.cpp | 2928 auto draw = [&](DrawOptions options, SkScalar x) { in onDrawContent() 2944 draw(DrawOptions::kReplay, column*0); in onDrawContent() 2945 draw(DrawOptions::kRecord, column*1); in onDrawContent() 2946 draw(DrawOptions::kDirect, column*2); in onDrawContent()
|
/external/skia/modules/skparagraph/tests/ |
D | SkParagraphTest.cpp | 5696 paragraph_style.setDrawOptions(DrawOptions::kRecord); in DEF_TEST()
|