diff options
author | Brian Paul <[email protected]> | 2012-01-16 13:06:03 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-24 14:12:37 -0700 |
commit | 56d83ac4bf0267982554f25c6fdb3c1dd6e14a9c (patch) | |
tree | fdd5e6d71c3dd71493f32a3b06946fb10c227809 /src/mesa/main/dd.h | |
parent | 8b8a54afd9b748b7250993393864544ad6961edb (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.h | 5 |
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. |