MYCHANGES (608B)
1 Need a few changes to point at the correct headers. 2 3 imgui_draw.cc: 4 5 -#include "stb_rect_pack.h" 6 +#include "libs/stb/stb_rect_pack.h" 7 8 -#include "stb_truetype.h" 9 +#include "libs/stb/stb_truetype.h" 10 11 12 imgui_impl_glfw_gl3.cc: 13 14 -#include <imgui.h> 15 +#include "imgui.h" 16 17 -#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. 18 -#include <GLFW/glfw3.h> 19 +#include "glad.h" 20 +#include "libs/glfw/include/GLFW/glfw3.h" 21 22 -#include <GLFW/glfw3native.h> 23 +#include "libs/glfw/include/GLFW/glfw3native.h"