Flutter Impeller
aiks_playground.cc
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 
6 
7 #include <memory>
8 
13 #include "include/core/SkRect.h"
14 
15 namespace impeller {
16 
18  : typographer_context_(TypographerContextSkia::Make()) {}
19 
21 
23  std::shared_ptr<TypographerContext> typographer_context) {
24  typographer_context_ = std::move(typographer_context);
25 }
26 
29 }
30 
31 bool AiksPlayground::ImGuiBegin(const char* name,
32  bool* p_open,
33  ImGuiWindowFlags flags) {
34  ImGui::Begin(name, p_open, flags);
35  return true;
36 }
37 
39  const sk_sp<flutter::DisplayList>& list) {
40  return OpenPlaygroundHere([list]() { return list; });
41 }
42 
44  const AiksDlPlaygroundCallback& callback) {
45  AiksContext renderer(GetContext(), typographer_context_);
46 
47  if (!renderer.IsValid()) {
48  return false;
49  }
50 
52  [&renderer, &callback](RenderTarget& render_target) -> bool {
53  return RenderToTarget(
54  renderer.GetContentContext(), //
55  render_target, //
56  callback(), //
57  SkIRect::MakeWH(render_target.GetRenderTargetSize().width,
58  render_target.GetRenderTargetSize().height), //
59  /*reset_host_buffer=*/true, //
60  /*is_onscreen=*/false);
61  });
62 }
63 
64 } // namespace impeller
ContentContext & GetContentContext() const
Definition: aiks_context.cc:42
bool IsValid() const
Definition: aiks_context.cc:34
std::function< sk_sp< flutter::DisplayList >()> AiksDlPlaygroundCallback
bool OpenPlaygroundHere(const AiksDlPlaygroundCallback &callback)
void SetTypographerContext(std::shared_ptr< TypographerContext > typographer_context)
static bool ImGuiBegin(const char *name, bool *p_open, ImGuiWindowFlags flags)
bool OpenPlaygroundHere(const RenderCallback &render_callback)
Definition: playground.cc:201
std::shared_ptr< Context > GetContext() const
Definition: playground.cc:91
ISize GetRenderTargetSize() const
bool RenderToTarget(ContentContext &context, RenderTarget render_target, const sk_sp< flutter::DisplayList > &display_list, SkIRect cull_rect, bool reset_host_buffer, bool is_onscreen)
Render the provided display list to the render target.
Type height
Definition: size.h:29
Type width
Definition: size.h:28