Flutter Impeller
entity_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 
9 #include "third_party/imgui/imgui.h"
10 
11 namespace impeller {
12 
14  : typographer_context_(TypographerContextSkia::Make()) {}
15 
17 
19  std::shared_ptr<TypographerContext> typographer_context) {
20  typographer_context_ = std::move(typographer_context);
21 }
22 
23 std::shared_ptr<ContentContext> EntityPlayground::GetContentContext() const {
24  return std::make_shared<ContentContext>(GetContext(), typographer_context_);
25 }
26 
29  return true;
30  }
31 
32  auto content_context = GetContentContext();
33  if (!content_context->IsValid()) {
34  return false;
35  }
36  SinglePassCallback callback = [&](RenderPass& pass) -> bool {
37  content_context->GetRenderTargetCache()->Start();
38  bool result = entity.Render(*content_context, pass);
39  content_context->GetRenderTargetCache()->End();
40  content_context->GetTransientsBuffer().Reset();
41  return result;
42  };
43  return Playground::OpenPlaygroundHere(callback);
44 }
45 
48  return true;
49  }
50 
51  ContentContext content_context(GetContext(), typographer_context_);
52  if (!content_context.IsValid()) {
53  return false;
54  }
55  SinglePassCallback pass_callback = [&](RenderPass& pass) -> bool {
56  content_context.GetRenderTargetCache()->Start();
57  bool result = callback(content_context, pass);
58  content_context.GetRenderTargetCache()->End();
59  content_context.GetTransientsBuffer().Reset();
60  return result;
61  };
62  return Playground::OpenPlaygroundHere(pass_callback);
63 }
64 
65 } // namespace impeller
HostBuffer & GetTransientsBuffer() const
Retrieve the currnent host buffer for transient storage.
const std::shared_ptr< RenderTargetAllocator > & GetRenderTargetCache() const
bool Render(const ContentContext &renderer, RenderPass &parent_pass) const
Definition: entity.cc:144
bool OpenPlaygroundHere(Entity entity)
std::shared_ptr< ContentContext > GetContentContext() const
std::function< bool(ContentContext &context, RenderPass &pass)> EntityPlaygroundCallback
void SetTypographerContext(std::shared_ptr< TypographerContext > typographer_context)
void Reset()
Resets the contents of the HostBuffer to nothing so it can be reused.
Definition: host_buffer.cc:229
bool OpenPlaygroundHere(const RenderCallback &render_callback)
Definition: playground.cc:201
std::function< bool(RenderPass &pass)> SinglePassCallback
Definition: playground.h:50
const PlaygroundSwitches switches_
Definition: playground.h:131
std::shared_ptr< Context > GetContext() const
Definition: playground.cc:91
Render passes encode render commands directed as one specific render target into an underlying comman...
Definition: render_pass.h:30