将ImGui与OpenGL一起使用时出现错误

时间:2019-06-22 16:52:04

标签: opengl imgui

我有一些在OpenGL中工作的代码,现在我想使用ImGui为我的应用程序制作GUI。

当我尝试通过包含ImGui::CreateContext();的一些头文件将ImGui的一行代码复制到我的项目ImGui时,它持续了一百个错误(可能是由于链接)。 / p>

我正在使用Ubuntu 18,并且使用Makefile来编译整个项目

包含imgui.h时出现的一些错误:

imgui/imgui.h:153:39: error: unknown type name ‘ImGuiInputTextCallbackData’; did you mean ‘ImGuiInputTextFlags’?
 typedef int (*ImGuiInputTextCallback)(ImGuiInputTextCallbackData *data);
                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~
                                       ImGuiInputTextFlags
imgui/imgui.h:154:35: error: unknown type name ‘ImGuiSizeCallbackData’
 typedef void (*ImGuiSizeCallback)(ImGuiSizeCallbackData* data);
                                   ^~~~~~~~~~~~~~~~~~~~~
imgui/imgui.h:179:5: error: expected specifier-qualifier-list before ‘ImVec2’
     ImVec2()  { x = y = 0.0f; }
     ^~~~~~
imgui/imgui.h:192:5: error: expected specifier-qualifier-list before ‘ImVec4’
     ImVec4()  { x = y = z = w = 0.0f; }
     ^~~~~~
imgui/imgui.h:204:1: error: unknown type name ‘namespace’; did you mean ‘isspace’?
 namespace ImGui
 ^~~~~~~~~
 isspace
imgui/imgui.h:205:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token
 {
 ^
In file included from window.c:23:0:
imgui/imgui.h:1200:23: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘new’
 inline void* operator new(size_t, ImNewDummy, void* ptr) { return ptr; }
                       ^~~
imgui/imgui.h:1201:23: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘delete’
 inline void  operator delete(void*, ImNewDummy, void*)   {} // This is only required so we can use the symmetrical new()
                       ^~~~~~
imgui/imgui.h:1206:9: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’ token
 template<typename T> void IM_DELETE(T* p)   { if (p) { p->~T(); ImGui::MemFree(p); } }
         ^
imgui/imgui.h:1217:9: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’ token
 template<typename T>
         ^
imgui/imgui.h:1280:5: error: unknown type name ‘ImVec2’
     ImVec2      WindowPadding;              // Padding within a window.

当我运行提供的一些示例时,它们可以正常工作。但是,当尝试用imgui的单行代码合并我的项目时,最终会出现上面显示的错误。

1 个答案:

答案 0 :(得分:1)

看着您遇到的错误类型,在我看来,您正在尝试使用C编译器编译程序。但是,ImGui是用C ++编写的。

例如:

imgui/imgui.h:204:1: error: unknown type name ‘namespace’; did you mean ‘isspace’?
 namespace ImGui
 ^~~~~~~~~

namespace是C ++保留的关键字,您的编译器似乎无法识别出它。

由于您提到正在使用MakeFile,请尝试在该文件中查找正在使用的编译器。如果显示gcc,请用g ++替换。如果使用的是clang,请将其替换为clang ++。