2015-03-09 12:59:23 +01:00
|
|
|
// ImGui - standalone example application for Glfw + OpenGL 3, using programmable pipeline
|
2014-12-03 19:29:46 +01:00
|
|
|
|
2015-03-09 12:59:23 +01:00
|
|
|
#include <imgui.h>
|
|
|
|
#include "imgui_impl_glfw_GL3.h"
|
2015-01-09 00:35:01 +01:00
|
|
|
#include <stdio.h>
|
2015-02-27 11:53:17 +01:00
|
|
|
#include <GL/gl3w.h>
|
2014-12-03 19:29:46 +01:00
|
|
|
#include <GLFW/glfw3.h>
|
2014-12-03 18:37:07 +01:00
|
|
|
|
2015-03-09 12:59:23 +01:00
|
|
|
static void error_callback(int error, const char* description)
|
2014-12-03 18:37:07 +01:00
|
|
|
{
|
2015-03-09 12:59:23 +01:00
|
|
|
fprintf(stderr, "Error: %s\n", description);
|
2014-12-03 18:37:07 +01:00
|
|
|
}
|
|
|
|
|
2015-03-09 12:59:23 +01:00
|
|
|
int main(int argc, char** argv)
|
2014-12-03 18:37:07 +01:00
|
|
|
{
|
2015-03-09 14:02:32 +01:00
|
|
|
// Setup window
|
2015-03-09 12:59:23 +01:00
|
|
|
glfwSetErrorCallback(error_callback);
|
2014-12-03 18:37:07 +01:00
|
|
|
if (!glfwInit())
|
|
|
|
exit(1);
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
|
2014-12-03 19:11:23 +01:00
|
|
|
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
|
2015-03-09 12:59:23 +01:00
|
|
|
GLFWwindow* window = glfwCreateWindow(1280, 720, "ImGui OpenGL3 example", NULL, NULL);
|
2014-12-03 18:37:07 +01:00
|
|
|
glfwMakeContextCurrent(window);
|
2015-02-27 11:53:17 +01:00
|
|
|
gl3wInit();
|
2014-12-03 19:11:23 +01:00
|
|
|
|
2015-03-09 14:02:32 +01:00
|
|
|
// Setup ImGui binding
|
|
|
|
ImGui_ImplGlfwGL3_Init(window, true);
|
2015-03-09 12:59:23 +01:00
|
|
|
//ImGuiIO& io = ImGui::GetIO();
|
2015-01-18 12:38:14 +01:00
|
|
|
//ImFont* my_font1 = io.Fonts->AddFontDefault();
|
|
|
|
//ImFont* my_font2 = io.Fonts->AddFontFromFileTTF("extra_fonts/Karla-Regular.ttf", 15.0f);
|
|
|
|
//ImFont* my_font3 = io.Fonts->AddFontFromFileTTF("extra_fonts/ProggyClean.ttf", 13.0f); my_font3->DisplayOffset.y += 1;
|
|
|
|
//ImFont* my_font4 = io.Fonts->AddFontFromFileTTF("extra_fonts/ProggyTiny.ttf", 10.0f); my_font4->DisplayOffset.y += 1;
|
2015-03-06 22:39:50 +01:00
|
|
|
//ImFont* my_font5 = io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\ArialUni.ttf", 18.0f, io.Fonts->GetGlyphRangesJapanese());
|
2015-03-09 14:02:32 +01:00
|
|
|
ImGui_ImplGlfwGL3_InitFontsTexture();
|
2014-12-03 18:37:07 +01:00
|
|
|
|
2015-01-15 10:59:18 +01:00
|
|
|
bool show_test_window = true;
|
|
|
|
bool show_another_window = false;
|
2015-03-09 12:59:23 +01:00
|
|
|
ImVec4 clear_color = ImColor(114, 144, 154);
|
2015-01-15 10:59:18 +01:00
|
|
|
|
2015-03-09 14:02:32 +01:00
|
|
|
// Main loop
|
2014-12-03 18:37:07 +01:00
|
|
|
while (!glfwWindowShouldClose(window))
|
|
|
|
{
|
|
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
|
|
glfwPollEvents();
|
2015-03-09 12:59:23 +01:00
|
|
|
ImGui_ImplGlfwGL3_NewFrame();
|
2014-12-03 18:37:07 +01:00
|
|
|
|
2014-12-03 19:46:13 +01: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"
|
|
|
|
{
|
|
|
|
static float f;
|
|
|
|
ImGui::Text("Hello, world!");
|
|
|
|
ImGui::SliderFloat("float", &f, 0.0f, 1.0f);
|
2015-03-09 12:59:23 +01:00
|
|
|
ImGui::ColorEdit3("clear color", (float*)&clear_color);
|
2015-01-15 10:59:18 +01:00
|
|
|
if (ImGui::Button("Test Window")) show_test_window ^= 1;
|
|
|
|
if (ImGui::Button("Another Window")) show_another_window ^= 1;
|
2015-02-11 19:28:17 +01:00
|
|
|
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
|
2014-12-03 19:46:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// 2. Show another simple window, this time using an explicit Begin/End pair
|
|
|
|
if (show_another_window)
|
|
|
|
{
|
|
|
|
ImGui::Begin("Another Window", &show_another_window, ImVec2(200,100));
|
|
|
|
ImGui::Text("Hello");
|
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3. Show the ImGui test window. Most of the sample code is in ImGui::ShowTestWindow()
|
|
|
|
if (show_test_window)
|
|
|
|
{
|
2015-02-27 10:51:11 +01:00
|
|
|
ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiSetCond_FirstUseEver);
|
2014-12-03 19:46:13 +01:00
|
|
|
ImGui::ShowTestWindow(&show_test_window);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rendering
|
2014-12-03 18:37:07 +01:00
|
|
|
glViewport(0, 0, (int)io.DisplaySize.x, (int)io.DisplaySize.y);
|
2015-03-09 12:59:23 +01:00
|
|
|
glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w);
|
2014-12-03 18:37:07 +01:00
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
ImGui::Render();
|
|
|
|
glfwSwapBuffers(window);
|
|
|
|
}
|
2014-12-03 19:40:28 +01:00
|
|
|
|
2014-12-03 19:46:13 +01:00
|
|
|
// Cleanup
|
2015-03-09 12:59:23 +01:00
|
|
|
ImGui_ImplGlfwGL3_Shutdown();
|
2014-12-03 18:37:07 +01:00
|
|
|
glfwTerminate();
|
|
|
|
|
|
|
|
return 0;
|
2014-12-03 19:46:13 +01:00
|
|
|
}
|