From 65d98e25770487456eb3d7eb8ec3ec8272f170b1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Wed, 28 Jul 2010 10:13:44 -0400 Subject: [PATCH] glx: Rename glcontextmodes.[ch] to glxconfig.[ch] --- src/glx/Makefile | 2 +- src/glx/dri_common.c | 1 - src/glx/glxclient.h | 2 +- src/glx/glxcmds.c | 1 - src/glx/{glcontextmodes.c => glxconfig.c} | 4 ++-- src/glx/{glcontextmodes.h => glxconfig.h} | 0 src/glx/glxext.c | 1 - 7 files changed, 4 insertions(+), 7 deletions(-) rename src/glx/{glcontextmodes.c => glxconfig.c} (99%) rename src/glx/{glcontextmodes.h => glxconfig.h} (100%) diff --git a/src/glx/Makefile b/src/glx/Makefile index 48d901fb894..70def7a2fbe 100644 --- a/src/glx/Makefile +++ b/src/glx/Makefile @@ -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 \ diff --git a/src/glx/dri_common.c b/src/glx/dri_common.c index 7866521e420..812fb2eb080 100644 --- a/src/glx/dri_common.c +++ b/src/glx/dri_common.c @@ -39,7 +39,6 @@ #include #include #include "glxclient.h" -#include "glcontextmodes.h" #include "dri_common.h" #ifndef RTLD_NOW diff --git a/src/glx/glxclient.h b/src/glx/glxclient.h index 3a8d294dab8..f8691433a69 100644 --- a/src/glx/glxclient.h +++ b/src/glx/glxclient.h @@ -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 diff --git a/src/glx/glxcmds.c b/src/glx/glxcmds.c index 85bfa657e0d..55a736ce475 100644 --- a/src/glx/glxcmds.c +++ b/src/glx/glxcmds.c @@ -36,7 +36,6 @@ #include "glxclient.h" #include "glapi.h" #include "glxextensions.h" -#include "glcontextmodes.h" #ifdef GLX_DIRECT_RENDERING #ifdef GLX_USE_APPLEGL diff --git a/src/glx/glcontextmodes.c b/src/glx/glxconfig.c similarity index 99% rename from src/glx/glcontextmodes.c rename to src/glx/glxconfig.c index 186de485ff4..1d9678f48cd 100644 --- a/src/glx/glcontextmodes.c +++ b/src/glx/glxconfig.c @@ -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 #include -#include "glcontextmodes.h" +#include "glxconfig.h" #define NUM_VISUAL_TYPES 6 diff --git a/src/glx/glcontextmodes.h b/src/glx/glxconfig.h similarity index 100% rename from src/glx/glcontextmodes.h rename to src/glx/glxconfig.h diff --git a/src/glx/glxext.c b/src/glx/glxext.c index 8e8b362d10d..b02755a6c2c 100644 --- a/src/glx/glxext.c +++ b/src/glx/glxext.c @@ -47,7 +47,6 @@ #include "apple_visual.h" #endif #include "glxextensions.h" -#include "glcontextmodes.h" #ifdef USE_XCB #include -- 2.30.2