Polyphase Game Engine
Loading...
Searching...
No Matches
imgui_impl_xcb.h
Go to the documentation of this file.
1#pragma once
2
3#if PLATFORM_LINUX
4
5#include "System/System.h"
6
7#include "imgui.h" // IMGUI_IMPL_API
8#ifndef IMGUI_DISABLE
9
10IMGUI_IMPL_API bool ImGui_ImplXcb_Init(xcb_window_t window);
11IMGUI_IMPL_API void ImGui_ImplXcb_Shutdown();
12IMGUI_IMPL_API void ImGui_ImplXcb_NewFrame();
13
14IMGUI_IMPL_API int32_t ImGui_ImplXcb_EventHandler(xcb_generic_event_t* event);
15
16#endif // #ifndef IMGUI_DISABLE
17
18#endif