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  sk_sp<flutter::DlImage> CreateDlImageForFixture(
35  const char* fixture_name,
36  bool enable_mipmapping = false) const;
37 
38  private:
39  DlPlayground(const DlPlayground&) = delete;
40 
41  DlPlayground& operator=(const DlPlayground&) = delete;
42 };
43 
44 } // namespace impeller
45 
46 #endif // FLUTTER_IMPELLER_DISPLAY_LIST_DL_PLAYGROUND_H_
impeller::DlPlayground::DlPlayground
DlPlayground()
impeller::DlPlayground::OpenPlaygroundHere
bool OpenPlaygroundHere(flutter::DisplayListBuilder &builder)
Definition: dl_playground.cc:26
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:76
impeller::PlaygroundTest
Definition: playground_test.h:21
impeller::DlPlayground::CreateDlImageForFixture
sk_sp< flutter::DlImage > CreateDlImageForFixture(const char *fixture_name, bool enable_mipmapping=false) const
Definition: dl_playground.cc:88
impeller
Definition: aiks_blend_unittests.cc:18
playground_test.h
impeller::DlPlayground::CreateTestFont
SkFont CreateTestFont()
Definition: dl_playground.cc:84
impeller::DlPlayground
Definition: dl_playground.h:15