diff options
author | Brian Paul <[email protected]> | 2012-08-21 20:22:27 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-08-24 06:18:41 -0600 |
commit | c1a9e6010baceeff78f72ac0692aefc4312d815f (patch) | |
tree | 9158b4eef2b51205b77cca06d1aff1a5cc938408 /src/mesa/main | |
parent | aab06dc0f0bf295abe213021b79ff65d70a4f4c0 (diff) |
mesa: rename texpal.[ch] to texcompress_cpal.[ch]
To be consistent with other files related to texture compression.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/texcompress_cpal.c (renamed from src/mesa/main/texpal.c) | 25 | ||||
-rw-r--r-- | src/mesa/main/texcompress_cpal.h (renamed from src/mesa/main/texpal.h) | 6 | ||||
-rw-r--r-- | src/mesa/main/teximage.c | 2 |
3 files changed, 24 insertions, 9 deletions
diff --git a/src/mesa/main/texpal.c b/src/mesa/main/texcompress_cpal.c index ed2261b01cb..2398ded69f4 100644 --- a/src/mesa/main/texpal.c +++ b/src/mesa/main/texcompress_cpal.c @@ -1,10 +1,25 @@ -/************************************************************************** +/* + * Mesa 3-D graphics library * * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas. - * All Rights Reserved. * - **************************************************************************/ - + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ /** * Code to convert compressed/paletted texture images to ordinary images. @@ -22,8 +37,8 @@ #include "mtypes.h" #include "imports.h" #include "pixelstore.h" +#include "texcompress_cpal.h" #include "teximage.h" -#include "texpal.h" #if FEATURE_ES diff --git a/src/mesa/main/texpal.h b/src/mesa/main/texcompress_cpal.h index acfaa313ec5..7507d5c1b65 100644 --- a/src/mesa/main/texpal.h +++ b/src/mesa/main/texcompress_cpal.h @@ -23,8 +23,8 @@ */ -#ifndef TEXPAL_H -#define TEXPAL_H +#ifndef TEXCOMPRESS_CPAL_H +#define TEXCOMPRESS_CPAL_H #include "main/glheader.h" @@ -42,4 +42,4 @@ extern void _mesa_cpal_compressed_format_type(GLenum internalFormat, GLenum *format, GLenum *type); -#endif /* TEXPAL_H */ +#endif /* TEXCOMPRESS_CPAL_H */ diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index eff6fb7c6e8..be01fb9c4e1 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -42,10 +42,10 @@ #include "mfeatures.h" #include "state.h" #include "texcompress.h" +#include "texcompress_cpal.h" #include "teximage.h" #include "texobj.h" #include "texstate.h" -#include "texpal.h" #include "mtypes.h" #include "glformats.h" |