Flutter Impeller
dl_playground.h
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef FLUTTER_IMPELLER_DISPLAY_LIST_DL_PLAYGROUND_H_
6 #define FLUTTER_IMPELLER_DISPLAY_LIST_DL_PLAYGROUND_H_
7 
8 #include "flutter/display_list/display_list.h"
9 #include "flutter/display_list/dl_builder.h"
11 #include "third_party/skia/include/core/SkFont.h"
12 
13 namespace impeller {
14 
15 class DlPlayground : public PlaygroundTest {
16  public:
18  std::function<sk_sp<flutter::DisplayList>()>;
19 
20  DlPlayground();
21 
22  ~DlPlayground();
23 
24  bool OpenPlaygroundHere(flutter::DisplayListBuilder& builder);
25 
26  bool OpenPlaygroundHere(sk_sp<flutter::DisplayList> list);
27 
29 
30  SkFont CreateTestFontOfSize(SkScalar scalar);
31 
32  SkFont CreateTestFont();
33 
34  private:
35  DlPlayground(const DlPlayground&) = delete;
36 
37  DlPlayground& operator=(const DlPlayground&) = delete;
38 };
39 
40 } // namespace impeller
41 
42 #endif // FLUTTER_IMPELLER_DISPLAY_LIST_DL_PLAYGROUND_H_
impeller::DlPlayground::DlPlayground
DlPlayground()
impeller::DlPlayground::OpenPlaygroundHere
bool OpenPlaygroundHere(flutter::DisplayListBuilder &builder)
Definition: dl_playground.cc:23
impeller::DlPlayground::DisplayListPlaygroundCallback
std::function< sk_sp< flutter::DisplayList >()> DisplayListPlaygroundCallback
Definition: dl_playground.h:18
impeller::DlPlayground::~DlPlayground
~DlPlayground()
impeller::DlPlayground::CreateTestFontOfSize
SkFont CreateTestFontOfSize(SkScalar scalar)
Definition: dl_playground.cc:58
impeller::PlaygroundTest
Definition: playground_test.h:23
impeller
Definition: aiks_blur_unittests.cc:20
playground_test.h
impeller::DlPlayground::CreateTestFont
SkFont CreateTestFont()
Definition: dl_playground.cc:66
impeller::DlPlayground
Definition: dl_playground.h:15