-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unresolved external symbol #4237
Comments
It looks like you're hitting #4171. The easiest solution is to add your beloved friend As an aside, you can't use a single ` for blocks of code which span multiple lines, you have to use three of them like this: ```cpp
// ^__ It's technically optional, but putting a language name here will add syntax highlighting as well.
// Say hello:
printf("Hello, world!\n");
``` |
It worked! Thanks |
Now it shows: Exception thrown: write access violation. |
Compare against the examples and make sure your main loop has all the appropriate function calls. The code you showed above is missing quite a few things. |
It works! Thanks |
Is there any good dockable panel tutorial I could use? |
Do you mean just having dockable panels in general? Check out the experimental docking branch. If you meant something else you'll have to clarify exactly what you're wanting to do. |
How do you get the docking to work? I would like some example code and if I need any extra files i'd like a link to the download |
The official examples show off most of the core features. For the most part, docking just works. If you're having trouble getting it to work in general, make sure you have it enabled. (And make sure it's enabled before you initialize the backends.) There's an article about docking on the wiki. You can browse docking-related issues using this GitHub issue filter. (This link is filtered to closed issues, but open issues might have interesting information as well.) Otherwise I'm not really aware of any resources beyond the comments in the header files. In general it's a lot easier to learn (and a lot easier for us to help you) if you have a specific goal in mind. |
Ah you just beat me.
Make sure you're using the docking branch. You can identify whether or not you have the docking code by looking for Line 69 in cce307a
From there, the only thing you really need to do is enable it as mentioned earlier. |
Okay thanks. |
No problem, good luck! |
Hello, this is not a chat room and you are behaving like a help vampire. |
Sorry. My apologies |
I keep getting this error I simply cannot fix!
imgui.obj : error LNK2019: unresolved external symbol "void __cdecl ImGui::ShowFontAtlas(struct ImFontAtlas *)" (?ShowFontAtlas@ImGui@@YAXPAUImFontAtlas@@@z) referenced in function "void __cdecl ImGui::ShowMetricsWindow(bool *)" (?ShowMetricsWindow@ImGui@@YAXPA_N@Z)
`
#include "GL/glew.h"
#include
//#include "ImGUI/imgui.h"
//#include "ImGUI/imgui_impl_glfw.h"
//#include "ImGUI/imgui_impl_opengl3.h"
#include "GLFW/glfw3.h"
using namespace std;
int main() {
GLFWwindow* window;
}
`
I have also compiled everything.
The text was updated successfully, but these errors were encountered: