OSDN Git Service

glx: Rename glcontextmodes.[ch] to glxconfig.[ch]
authorKristian Høgsberg <krh@bitplanet.net>
Wed, 28 Jul 2010 14:13:44 +0000 (10:13 -0400)
committerKristian Høgsberg <krh@bitplanet.net>
Wed, 28 Jul 2010 20:42:00 +0000 (16:42 -0400)
src/glx/Makefile
src/glx/dri_common.c
src/glx/glxclient.h
src/glx/glxcmds.c
src/glx/glxconfig.c [moved from src/glx/glcontextmodes.c with 99% similarity]
src/glx/glxconfig.h [moved from src/glx/glcontextmodes.h with 100% similarity]
src/glx/glxext.c

index 48d901f..70def7a 100644 (file)
@@ -5,10 +5,10 @@ EXTRA_DEFINES = -DXF86VIDMODE -D_REENTRANT \
                 -DDEFAULT_DRIVER_DIR=\"$(DRI_DRIVER_SEARCH_DIR)\"
 
 SOURCES = \
-         glcontextmodes.c \
          clientattrib.c \
          compsize.c \
          eval.c \
+         glxconfig.c \
          glxcmds.c \
          glxcurrent.c \
          glxext.c \
index 7866521..812fb2e 100644 (file)
@@ -39,7 +39,6 @@
 #include <dlfcn.h>
 #include <stdarg.h>
 #include "glxclient.h"
-#include "glcontextmodes.h"
 #include "dri_common.h"
 
 #ifndef RTLD_NOW
index 3a8d294..f869143 100644 (file)
@@ -51,7 +51,7 @@
 #endif
 #include "GL/glxproto.h"
 #include "glapi/glapitable.h"
-#include "glcontextmodes.h"
+#include "glxconfig.h"
 #include "glxhash.h"
 #if defined( PTHREADS )
 # include <pthread.h>
index 85bfa65..55a736c 100644 (file)
@@ -36,7 +36,6 @@
 #include "glxclient.h"
 #include "glapi.h"
 #include "glxextensions.h"
-#include "glcontextmodes.h"
 
 #ifdef GLX_DIRECT_RENDERING
 #ifdef GLX_USE_APPLEGL
similarity index 99%
rename from src/glx/glcontextmodes.c
rename to src/glx/glxconfig.c
index 186de48..1d9678f 100644 (file)
@@ -23,7 +23,7 @@
  */
 
 /**
- * \file glcontextmodes.c
+ * \file glxconfig.c
  * Utility routines for working with \c struct glx_config structures.  At
  * some point most or all of these functions will be moved to the Mesa
  * code base.
@@ -36,7 +36,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include "glcontextmodes.h"
+#include "glxconfig.h"
 
 #define NUM_VISUAL_TYPES   6
 
similarity index 100%
rename from src/glx/glcontextmodes.h
rename to src/glx/glxconfig.h
index 8e8b362..b02755a 100644 (file)
@@ -47,7 +47,6 @@
 #include "apple_visual.h"
 #endif
 #include "glxextensions.h"
-#include "glcontextmodes.h"
 
 #ifdef USE_XCB
 #include <X11/Xlib-xcb.h>