Updated comments on global variables.

This commit is contained in:
Camilla Berglund 2014-06-09 12:34:42 +02:00
parent ae469ee614
commit 7653f3af49
1 changed files with 3 additions and 2 deletions

View File

@ -33,14 +33,15 @@
#include <stdarg.h>
// The three global variables below comprise all global data in GLFW, except for
// various static const translation tables. Any other global variable is a bug.
// Global state shared between compilation units of GLFW
// These are documented in internal.h
//
GLboolean _glfwInitialized = GL_FALSE;
_GLFWlibrary _glfw;
// The current error callback
// This is outside of _glfw so it can be initialized and usable before
// glfwInit is called, which lets that function report errors
//