summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-09-27 21:13:46 -0600
committerBrian Paul <brianp@vmware.com>2009-09-27 21:13:46 -0600
commit4fc344790d0fefa3c38c63cadc4ee6a52633b006 (patch)
tree91b5db238e3b0b77ac8111a7bf86f9c1f2ae96b2 /src
parente987ea9d2181acec2fc70538ffbb92d7ab15d918 (diff)
mesa: update comments
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/texcompress_fxt1.c4
-rw-r--r--src/mesa/main/texcompress_s3tc.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/main/texcompress_fxt1.c b/src/mesa/main/texcompress_fxt1.c
index 1a103ff14e..c401f82be0 100644
--- a/src/mesa/main/texcompress_fxt1.c
+++ b/src/mesa/main/texcompress_fxt1.c
@@ -63,7 +63,7 @@ _mesa_init_texture_fxt1( GLcontext *ctx )
/**
- * Called via TexFormat->StoreImage to store an RGB_FXT1 texture.
+ * Store user's image in rgb_fxt1 format.
*/
GLboolean
_mesa_texstore_rgb_fxt1(TEXSTORE_PARAMS)
@@ -120,7 +120,7 @@ _mesa_texstore_rgb_fxt1(TEXSTORE_PARAMS)
/**
- * Called via TexFormat->StoreImage to store an RGBA_FXT1 texture.
+ * Store user's image in rgba_fxt1 format.
*/
GLboolean
_mesa_texstore_rgba_fxt1(TEXSTORE_PARAMS)
diff --git a/src/mesa/main/texcompress_s3tc.c b/src/mesa/main/texcompress_s3tc.c
index 86492d05fb..2294fdca73 100644
--- a/src/mesa/main/texcompress_s3tc.c
+++ b/src/mesa/main/texcompress_s3tc.c
@@ -154,7 +154,7 @@ _mesa_init_texture_s3tc( GLcontext *ctx )
}
/**
- * Called via TexFormat->StoreImage to store an RGB_DXT1 texture.
+ * Store user's image in rgb_dxt1 format.
*/
GLboolean
_mesa_texstore_rgb_dxt1(TEXSTORE_PARAMS)
@@ -217,7 +217,7 @@ _mesa_texstore_rgb_dxt1(TEXSTORE_PARAMS)
/**
- * Called via TexFormat->StoreImage to store an RGBA_DXT1 texture.
+ * Store user's image in rgba_dxt1 format.
*/
GLboolean
_mesa_texstore_rgba_dxt1(TEXSTORE_PARAMS)
@@ -279,7 +279,7 @@ _mesa_texstore_rgba_dxt1(TEXSTORE_PARAMS)
/**
- * Called via TexFormat->StoreImage to store an RGBA_DXT3 texture.
+ * Store user's image in rgba_dxt3 format.
*/
GLboolean
_mesa_texstore_rgba_dxt3(TEXSTORE_PARAMS)
@@ -340,7 +340,7 @@ _mesa_texstore_rgba_dxt3(TEXSTORE_PARAMS)
/**
- * Called via TexFormat->StoreImage to store an RGBA_DXT5 texture.
+ * Store user's image in rgba_dxt5 format.
*/
GLboolean
_mesa_texstore_rgba_dxt5(TEXSTORE_PARAMS)