mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-17 01:04:19 +00:00
Examples: Added .. folder in include path to remove the awkward #include "../imgui_impl_xxx.h" statements.
This commit is contained in:
parent
93b032ea92
commit
77d51ebf24
25 changed files with 75 additions and 64 deletions
|
|
@ -4,8 +4,8 @@
|
|||
// (GL3W is a helper library to access OpenGL functions since there is no standard header to access modern OpenGL functions easily. Alternatives are GLEW, Glad, etc.)
|
||||
|
||||
#include "imgui.h"
|
||||
#include "../imgui_impl_glfw.h"
|
||||
#include "../imgui_impl_opengl3.h"
|
||||
#include "imgui_impl_glfw.h"
|
||||
#include "imgui_impl_opengl3.h"
|
||||
#include <stdio.h>
|
||||
#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.
|
||||
#include <GLFW/glfw3.h>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue