From 39dfa7d2588c4e5312e97dcc179146ddce430103 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 15 Nov 2010 21:39:46 +0100 Subject: [PATCH] Fixed token sequence gaps. --- include/GL/glfw3.h | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/include/GL/glfw3.h b/include/GL/glfw3.h index 01fef48b..ceec0f61 100644 --- a/include/GL/glfw3.h +++ b/include/GL/glfw3.h @@ -307,33 +307,33 @@ extern "C" { #define GLFW_FULLSCREEN 0x00010002 /* glfwGetWindowParam tokens */ -#define GLFW_ACTIVE 0x00020002 -#define GLFW_ICONIFIED 0x00020003 -#define GLFW_ACCELERATED 0x00020004 +#define GLFW_ACTIVE 0x00020001 +#define GLFW_ICONIFIED 0x00020002 +#define GLFW_ACCELERATED 0x00020003 /* The following constants are used for both glfwGetWindowParam * and glfwOpenWindowHint */ -#define GLFW_RED_BITS 0x00020005 -#define GLFW_GREEN_BITS 0x00020006 -#define GLFW_BLUE_BITS 0x00020007 -#define GLFW_ALPHA_BITS 0x00020008 -#define GLFW_DEPTH_BITS 0x00020009 -#define GLFW_STENCIL_BITS 0x0002000A -#define GLFW_REFRESH_RATE 0x0002000B -#define GLFW_ACCUM_RED_BITS 0x0002000C -#define GLFW_ACCUM_GREEN_BITS 0x0002000D -#define GLFW_ACCUM_BLUE_BITS 0x0002000E -#define GLFW_ACCUM_ALPHA_BITS 0x0002000F -#define GLFW_AUX_BUFFERS 0x00020010 -#define GLFW_STEREO 0x00020011 -#define GLFW_WINDOW_NO_RESIZE 0x00020012 -#define GLFW_FSAA_SAMPLES 0x00020013 -#define GLFW_OPENGL_VERSION_MAJOR 0x00020014 -#define GLFW_OPENGL_VERSION_MINOR 0x00020015 -#define GLFW_OPENGL_FORWARD_COMPAT 0x00020016 -#define GLFW_OPENGL_DEBUG_CONTEXT 0x00020017 -#define GLFW_OPENGL_PROFILE 0x00020018 +#define GLFW_RED_BITS 0x00020004 +#define GLFW_GREEN_BITS 0x00020005 +#define GLFW_BLUE_BITS 0x00020006 +#define GLFW_ALPHA_BITS 0x00020007 +#define GLFW_DEPTH_BITS 0x00020008 +#define GLFW_STENCIL_BITS 0x00020009 +#define GLFW_REFRESH_RATE 0x0002000A +#define GLFW_ACCUM_RED_BITS 0x0002000B +#define GLFW_ACCUM_GREEN_BITS 0x0002000C +#define GLFW_ACCUM_BLUE_BITS 0x0002000D +#define GLFW_ACCUM_ALPHA_BITS 0x0002000E +#define GLFW_AUX_BUFFERS 0x0002000F +#define GLFW_STEREO 0x00020010 +#define GLFW_WINDOW_NO_RESIZE 0x00020011 +#define GLFW_FSAA_SAMPLES 0x00020012 +#define GLFW_OPENGL_VERSION_MAJOR 0x00020013 +#define GLFW_OPENGL_VERSION_MINOR 0x00020014 +#define GLFW_OPENGL_FORWARD_COMPAT 0x00020015 +#define GLFW_OPENGL_DEBUG_CONTEXT 0x00020016 +#define GLFW_OPENGL_PROFILE 0x00020017 /* GLFW_OPENGL_PROFILE tokens */ #define GLFW_OPENGL_CORE_PROFILE 0x00050001