Flutter Impeller
imgui_impl_impeller.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 #pragma once
6 
7 #include <memory>
8 
9 #include "third_party/imgui/imgui.h"
10 
11 namespace impeller {
12 
13 class Context;
14 class RenderPass;
15 
16 } // namespace impeller
17 
18 IMGUI_IMPL_API bool ImGui_ImplImpeller_Init(
19  const std::shared_ptr<impeller::Context>& context);
20 
21 IMGUI_IMPL_API void ImGui_ImplImpeller_Shutdown();
22 
23 IMGUI_IMPL_API void ImGui_ImplImpeller_RenderDrawData(
24  ImDrawData* draw_data,
25  impeller::RenderPass& renderpass);
ImGui_ImplImpeller_Shutdown
IMGUI_IMPL_API void ImGui_ImplImpeller_Shutdown()
Definition: imgui_impl_impeller.cc:115
impeller::RenderPass
Render passes encode render commands directed as one specific render target into an underlying comman...
Definition: render_pass.h:27
impeller
Definition: aiks_context.cc:10
ImGui_ImplImpeller_RenderDrawData
IMGUI_IMPL_API void ImGui_ImplImpeller_RenderDrawData(ImDrawData *draw_data, impeller::RenderPass &renderpass)
Definition: imgui_impl_impeller.cc:122
ImGui_ImplImpeller_Init
IMGUI_IMPL_API bool ImGui_ImplImpeller_Init(const std::shared_ptr< impeller::Context > &context)
Definition: imgui_impl_impeller.cc:51