summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
diff options
context:
space:
mode:
authorLaura Ekstrand <[email protected]>2014-12-05 10:39:51 -0800
committerLaura Ekstrand <[email protected]>2015-01-08 11:37:28 -0800
commitea1fb258baef42d51ef24895b978c86dd1db7750 (patch)
tree3d0419693d1f05bf2306439dd7556d82a3203987 /src/mesa/main
parent460365cde3c0ef439ae2f521063a2715da41b4b7 (diff)
main: Renamed _mesa_get_compressed_teximage to _mesa_GetCompressedTexImage_sw.
This reflects the new naming convention for software fallbacks. To avoid confusion with ARB_DIRECT_STATE_ACCESS backend functions, software fallbacks now have the form _mesa_[Driver function name]_sw. Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/texgetimage.c6
-rw-r--r--src/mesa/main/texgetimage.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c
index d700bfef78f..4ec8f9e9ec5 100644
--- a/src/mesa/main/texgetimage.c
+++ b/src/mesa/main/texgetimage.c
@@ -689,9 +689,9 @@ _mesa_GetTexImage_sw(struct gl_context *ctx,
* All error checking will have been done before this routine is called.
*/
void
-_mesa_get_compressed_teximage(struct gl_context *ctx,
- struct gl_texture_image *texImage,
- GLvoid *img)
+_mesa_GetCompressedTexImage_sw(struct gl_context *ctx,
+ struct gl_texture_image *texImage,
+ GLvoid *img)
{
const GLuint dimensions =
_mesa_get_texture_dimensions(texImage->TexObject->Target);
diff --git a/src/mesa/main/texgetimage.h b/src/mesa/main/texgetimage.h
index da45ac93ae7..54739fdafd6 100644
--- a/src/mesa/main/texgetimage.h
+++ b/src/mesa/main/texgetimage.h
@@ -43,9 +43,9 @@ _mesa_GetTexImage_sw(struct gl_context *ctx,
extern void
-_mesa_get_compressed_teximage(struct gl_context *ctx,
- struct gl_texture_image *texImage,
- GLvoid *data);
+_mesa_GetCompressedTexImage_sw(struct gl_context *ctx,
+ struct gl_texture_image *texImage,
+ GLvoid *data);