2
0

main.cpp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. // ImGui - standalone example application for Glfw + OpenGL 3, using programmable pipeline
  2. // If you are new to ImGui, see examples/README.txt and documentation at the top of imgui.cpp.
  3. #include <imgui.h>
  4. #include "imgui_impl_glfw_gl3.h"
  5. #include <stdio.h>
  6. #include <GL/gl3w.h> // This example is using gl3w to access OpenGL functions (because it is small). You may use glew/glad/glLoadGen/etc. whatever already works for you.
  7. #include <GLFW/glfw3.h>
  8. static void error_callback(int error, const char* description)
  9. {
  10. fprintf(stderr, "Error %d: %s\n", error, description);
  11. }
  12. int main(int, char**)
  13. {
  14. // Setup window
  15. glfwSetErrorCallback(error_callback);
  16. if (!glfwInit())
  17. return 1;
  18. glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
  19. glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
  20. glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
  21. #if __APPLE__
  22. glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
  23. #endif
  24. GLFWwindow* window = glfwCreateWindow(1280, 720, "ImGui OpenGL3 example", NULL, NULL);
  25. glfwMakeContextCurrent(window);
  26. glfwSwapInterval(1); // Enable vsync
  27. gl3wInit();
  28. // Setup ImGui binding
  29. ImGui_ImplGlfwGL3_Init(window, true);
  30. // Load Fonts
  31. // - If no fonts are loaded, dear imgui will use the default font. You can also load multiple fonts and use ImGui::PushFont()/PopFont() to select them.
  32. // - AddFontFromFileTTF() will return the ImFont* so you can store it if you need to select the font among multiple.
  33. // - If the file cannot be loaded, the function will return NULL. Please handle those errors in your application (e.g. use an assertion, or display an error and quit).
  34. // - The fonts will be rasterized at a given size (w/ oversampling) and stored into a texture when calling ImFontAtlas::Build()/GetTexDataAsXXXX(), which ImGui_ImplXXXX_NewFrame below will call.
  35. // - Read 'extra_fonts/README.txt' for more instructions and details.
  36. // - Remember that in C/C++ if you want to include a backslash \ in a string literal you need to write a double backslash \\ !
  37. //ImGuiIO& io = ImGui::GetIO();
  38. //io.Fonts->AddFontDefault();
  39. //io.Fonts->AddFontFromFileTTF("../../extra_fonts/Roboto-Medium.ttf", 16.0f);
  40. //io.Fonts->AddFontFromFileTTF("../../extra_fonts/Cousine-Regular.ttf", 15.0f);
  41. //io.Fonts->AddFontFromFileTTF("../../extra_fonts/DroidSans.ttf", 16.0f);
  42. //io.Fonts->AddFontFromFileTTF("../../extra_fonts/ProggyTiny.ttf", 10.0f);
  43. //ImFont* font = io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\ArialUni.ttf", 18.0f, NULL, io.Fonts->GetGlyphRangesJapanese());
  44. //IM_ASSERT(font != NULL);
  45. bool show_test_window = true;
  46. bool show_another_window = false;
  47. ImVec4 clear_color = ImVec4(0.45f, 0.55f, 0.60f, 1.00f);
  48. // Main loop
  49. while (!glfwWindowShouldClose(window))
  50. {
  51. glfwPollEvents();
  52. ImGui_ImplGlfwGL3_NewFrame();
  53. // 1. Show a simple window
  54. // Tip: if we don't call ImGui::Begin()/ImGui::End() the widgets appears in a window automatically called "Debug"
  55. {
  56. static float f = 0.0f;
  57. ImGui::Text("Hello, world!");
  58. ImGui::SliderFloat("float", &f, 0.0f, 1.0f);
  59. ImGui::ColorEdit3("clear color", (float*)&clear_color);
  60. if (ImGui::Button("Test Window")) show_test_window ^= 1;
  61. if (ImGui::Button("Another Window")) show_another_window ^= 1;
  62. ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
  63. }
  64. // 2. Show another simple window, this time using an explicit Begin/End pair
  65. if (show_another_window)
  66. {
  67. ImGui::Begin("Another Window", &show_another_window);
  68. ImGui::Text("Hello from another window!");
  69. ImGui::End();
  70. }
  71. // 3. Show the ImGui test window. Most of the sample code is in ImGui::ShowTestWindow()
  72. if (show_test_window)
  73. {
  74. ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiCond_FirstUseEver);
  75. ImGui::ShowTestWindow(&show_test_window);
  76. }
  77. // Rendering
  78. int display_w, display_h;
  79. glfwGetFramebufferSize(window, &display_w, &display_h);
  80. glViewport(0, 0, display_w, display_h);
  81. glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w);
  82. glClear(GL_COLOR_BUFFER_BIT);
  83. ImGui::Render();
  84. glfwSwapBuffers(window);
  85. }
  86. // Cleanup
  87. ImGui_ImplGlfwGL3_Shutdown();
  88. glfwTerminate();
  89. return 0;
  90. }