Examples: GL3: Comments about gl3w (#880)

This commit is contained in:
ocornut 2016-11-12 12:48:33 +01:00
parent 775ac24d45
commit a68ac96bc4
4 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@
#include "imgui_impl_glfw_gl3.h" #include "imgui_impl_glfw_gl3.h"
// GL3W/GLFW // GL3W/GLFW
#include <GL/gl3w.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> #include <GLFW/glfw3.h>
#ifdef _WIN32 #ifdef _WIN32
#undef APIENTRY #undef APIENTRY

View File

@ -4,7 +4,7 @@
#include <imgui.h> #include <imgui.h>
#include "imgui_impl_glfw_gl3.h" #include "imgui_impl_glfw_gl3.h"
#include <stdio.h> #include <stdio.h>
#include <GL/gl3w.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> #include <GLFW/glfw3.h>
static void error_callback(int error, const char* description) static void error_callback(int error, const char* description)

View File

@ -12,7 +12,7 @@
// SDL,GL3W // SDL,GL3W
#include <SDL.h> #include <SDL.h>
#include <SDL_syswm.h> #include <SDL_syswm.h>
#include <GL/gl3w.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.
// Data // Data
static double g_Time = 0.0f; static double g_Time = 0.0f;

View File

@ -4,7 +4,7 @@
#include <imgui.h> #include <imgui.h>
#include "imgui_impl_sdl_gl3.h" #include "imgui_impl_sdl_gl3.h"
#include <stdio.h> #include <stdio.h>
#include <GL/gl3w.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 <SDL.h> #include <SDL.h>
int main(int, char**) int main(int, char**)