mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-15 15:02:52 +01:00
12 lines
432 B
C
12 lines
432 B
C
|
#pragma once
|
||
|
#include "imgui.h"
|
||
|
#include "imgui_impl_glfw.h"
|
||
|
#include "imgui_impl_opengl3.h"
|
||
|
#include <stdio.h>
|
||
|
#include <GL/glew.h>
|
||
|
#include <GLFW/glfw3.h>
|
||
|
|
||
|
#define WINDOW_FLAGS ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoBringToFrontOnFocus | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoBackground | ImGuiWindowFlags_MenuBar
|
||
|
|
||
|
void windowInit();
|
||
|
void drawWindow();
|