summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-01-16 13:06:03 -0700
committerBrian Paul <[email protected]>2012-01-24 14:12:37 -0700
commit56d83ac4bf0267982554f25c6fdb3c1dd6e14a9c (patch)
treefdd5e6d71c3dd71493f32a3b06946fb10c227809 /src/mesa/main/dd.h
parent8b8a54afd9b748b7250993393864544ad6961edb (diff)
mesa: remove ctx->Driver.Map/UnmapTexture() hooks
No longer used anywhere.
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index 8393f328f44..0641e3bbabc 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -476,11 +476,6 @@ struct dd_function_table {
struct gl_texture_image *texImage,
GLuint slice);
- /** Map texture image data into user space */
- void (*MapTexture)( struct gl_context *ctx, struct gl_texture_object *tObj );
- /** Unmap texture images from user space */
- void (*UnmapTexture)( struct gl_context *ctx, struct gl_texture_object *tObj );
-
/** For GL_ARB_texture_storage. Allocate memory for whole mipmap stack.
* All the gl_texture_images in the texture object will have their
* dimensions, format, etc. initialized already.