aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/intel/intel_mipmap_tree.h
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2011-09-28 15:25:30 -0700
committerEric Anholt <[email protected]>2011-10-03 13:29:38 -0700
commit055995abc4e2f4a73122bd008a0e6f0558300d82 (patch)
treef99665efeadab2973890e20ebe22357e8a2ae893 /src/mesa/drivers/dri/intel/intel_mipmap_tree.h
parent9aff2944a449f586e32f537350e590910d09d016 (diff)
intel: Clean up the function chain for mapping texture images for swrast.
Too many separate functions each called from one location (in different files). This code should all die soon when swrast starts using MapTextureImage.
Diffstat (limited to 'src/mesa/drivers/dri/intel/intel_mipmap_tree.h')
-rw-r--r--src/mesa/drivers/dri/intel/intel_mipmap_tree.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_mipmap_tree.h b/src/mesa/drivers/dri/intel/intel_mipmap_tree.h
index 0d4d2f91f7a..7ca24f9bb60 100644
--- a/src/mesa/drivers/dri/intel/intel_mipmap_tree.h
+++ b/src/mesa/drivers/dri/intel/intel_mipmap_tree.h
@@ -165,18 +165,6 @@ void intel_miptree_release(struct intel_mipmap_tree **mt);
GLboolean intel_miptree_match_image(struct intel_mipmap_tree *mt,
struct gl_texture_image *image);
-/* Return a pointer to an image within a tree. Return image stride as
- * well.
- */
-GLubyte *intel_miptree_image_map(struct intel_context *intel,
- struct intel_mipmap_tree *mt,
- GLuint face,
- GLuint level,
- GLuint * row_stride, GLuint * image_stride);
-
-void intel_miptree_image_unmap(struct intel_context *intel,
- struct intel_mipmap_tree *mt);
-
void
intel_miptree_get_image_offset(struct intel_mipmap_tree *mt,
GLuint level, GLuint face, GLuint depth,