2015-03-09 19:25:15 +08:00
|
|
|
// ImGui - standalone example application for Glfw + OpenGL 2, using fixed pipeline
|
2015-11-29 19:25:15 +08:00
|
|
|
// If you are new to ImGui, see examples/README.txt and documentation at the top of imgui.cpp.
|
2014-12-04 02:29:46 +08:00
|
|
|
|
2015-03-09 19:25:15 +08:00
|
|
|
#include <imgui.h>
|
|
|
|
#include "imgui_impl_glfw.h"
|
2015-01-09 07:35:01 +08:00
|
|
|
#include <stdio.h>
|
2014-09-25 21:54:19 +08:00
|
|
|
#include <GLFW/glfw3.h>
|
2014-09-30 16:57:44 +08:00
|
|
|
|
2015-03-09 19:25:15 +08:00
|
|
|
static void error_callback(int error, const char* description)
|
2014-08-11 05:02:33 +08:00
|
|
|
{
|
2015-03-14 18:41:42 +08:00
|
|
|
fprintf(stderr, "Error %d: %s\n", error, description);
|
2014-08-11 05:02:33 +08:00
|
|
|
}
|
|
|
|
|
2015-03-14 18:41:42 +08:00
|
|
|
int main(int, char**)
|
2014-08-11 05:02:33 +08:00
|
|
|
{
|
2015-03-09 21:02:32 +08:00
|
|
|
// Setup window
|
2015-03-09 19:25:15 +08:00
|
|
|
glfwSetErrorCallback(error_callback);
|
2014-08-19 19:09:13 +08:00
|
|
|
if (!glfwInit())
|
2015-11-14 00:08:54 +08:00
|
|
|
return 1;
|
2015-03-09 19:25:15 +08:00
|
|
|
GLFWwindow* window = glfwCreateWindow(1280, 720, "ImGui OpenGL2 example", NULL, NULL);
|
2014-08-19 19:09:13 +08:00
|
|
|
glfwMakeContextCurrent(window);
|
2014-08-11 22:02:33 +08:00
|
|
|
|
2015-03-09 21:02:32 +08:00
|
|
|
// Setup ImGui binding
|
2015-03-09 19:25:15 +08:00
|
|
|
ImGui_ImplGlfw_Init(window, true);
|
2015-07-15 23:05:17 +08:00
|
|
|
|
|
|
|
// Load Fonts
|
2015-11-29 19:11:03 +08:00
|
|
|
// (there is a default font, this is only if you want to change it. see extra_fonts/README.txt for more details)
|
2015-03-09 19:25:15 +08:00
|
|
|
//ImGuiIO& io = ImGui::GetIO();
|
2015-07-15 21:05:34 +08:00
|
|
|
//io.Fonts->AddFontDefault();
|
2015-07-16 04:56:29 +08:00
|
|
|
//io.Fonts->AddFontFromFileTTF("../../extra_fonts/Cousine-Regular.ttf", 15.0f);
|
2015-07-15 21:05:34 +08:00
|
|
|
//io.Fonts->AddFontFromFileTTF("../../extra_fonts/DroidSans.ttf", 16.0f);
|
|
|
|
//io.Fonts->AddFontFromFileTTF("../../extra_fonts/ProggyClean.ttf", 13.0f);
|
|
|
|
//io.Fonts->AddFontFromFileTTF("../../extra_fonts/ProggyTiny.ttf", 10.0f);
|
|
|
|
//io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\ArialUni.ttf", 18.0f, NULL, io.Fonts->GetGlyphRangesJapanese());
|
2014-08-19 19:09:13 +08:00
|
|
|
|
2015-01-15 17:59:18 +08:00
|
|
|
bool show_test_window = true;
|
|
|
|
bool show_another_window = false;
|
2015-03-09 19:25:15 +08:00
|
|
|
ImVec4 clear_color = ImColor(114, 144, 154);
|
2015-01-15 17:59:18 +08:00
|
|
|
|
2015-03-09 21:02:32 +08:00
|
|
|
// Main loop
|
2014-08-19 19:09:13 +08:00
|
|
|
while (!glfwWindowShouldClose(window))
|
|
|
|
{
|
|
|
|
glfwPollEvents();
|
2015-03-09 19:25:15 +08:00
|
|
|
ImGui_ImplGlfw_NewFrame();
|
2014-08-19 19:09:13 +08:00
|
|
|
|
2014-09-30 17:09:44 +08:00
|
|
|
// 1. Show a simple window
|
|
|
|
// Tip: if we don't call ImGui::Begin()/ImGui::End() the widgets appears in a window automatically called "Debug"
|
2014-08-19 19:09:13 +08:00
|
|
|
{
|
2015-04-03 19:11:41 +08:00
|
|
|
static float f = 0.0f;
|
2014-09-30 17:09:44 +08:00
|
|
|
ImGui::Text("Hello, world!");
|
|
|
|
ImGui::SliderFloat("float", &f, 0.0f, 1.0f);
|
2015-03-09 19:25:15 +08:00
|
|
|
ImGui::ColorEdit3("clear color", (float*)&clear_color);
|
2015-01-15 17:59:18 +08:00
|
|
|
if (ImGui::Button("Test Window")) show_test_window ^= 1;
|
|
|
|
if (ImGui::Button("Another Window")) show_another_window ^= 1;
|
2015-02-12 02:28:17 +08:00
|
|
|
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
|
2014-08-19 19:09:13 +08:00
|
|
|
}
|
|
|
|
|
2014-09-30 17:09:44 +08:00
|
|
|
// 2. Show another simple window, this time using an explicit Begin/End pair
|
2014-08-19 19:09:13 +08:00
|
|
|
if (show_another_window)
|
|
|
|
{
|
2015-03-16 19:53:36 +08:00
|
|
|
ImGui::SetNextWindowSize(ImVec2(200,100), ImGuiSetCond_FirstUseEver);
|
|
|
|
ImGui::Begin("Another Window", &show_another_window);
|
2014-08-19 19:09:13 +08:00
|
|
|
ImGui::Text("Hello");
|
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
2014-09-30 17:09:44 +08:00
|
|
|
// 3. Show the ImGui test window. Most of the sample code is in ImGui::ShowTestWindow()
|
|
|
|
if (show_test_window)
|
|
|
|
{
|
2015-02-27 17:51:11 +08:00
|
|
|
ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiSetCond_FirstUseEver);
|
2014-09-30 17:09:44 +08:00
|
|
|
ImGui::ShowTestWindow(&show_test_window);
|
|
|
|
}
|
|
|
|
|
2014-08-19 19:09:13 +08:00
|
|
|
// Rendering
|
2015-08-28 02:51:02 +08:00
|
|
|
int display_w, display_h;
|
|
|
|
glfwGetFramebufferSize(window, &display_w, &display_h);
|
|
|
|
glViewport(0, 0, display_w, display_h);
|
2015-03-09 19:25:15 +08:00
|
|
|
glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w);
|
2014-08-19 19:09:13 +08:00
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
ImGui::Render();
|
|
|
|
glfwSwapBuffers(window);
|
|
|
|
}
|
|
|
|
|
2014-12-04 02:46:13 +08:00
|
|
|
// Cleanup
|
2015-03-09 19:25:15 +08:00
|
|
|
ImGui_ImplGlfw_Shutdown();
|
2014-08-19 19:09:13 +08:00
|
|
|
glfwTerminate();
|
2014-12-04 02:40:28 +08:00
|
|
|
|
2014-12-04 02:46:13 +08:00
|
|
|
return 0;
|
2014-08-11 05:02:33 +08:00
|
|
|
}
|