diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-02-08 14:45:58 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-02-08 15:13:48 -0700 |
commit | c3395f4473c8fdf75d04c0dd72e687bc8d8127a7 (patch) | |
tree | cc9d8136374bfb9afa694c4e5a43d29c7ac545f2 /src/mesa/main/dd.h | |
parent | 21e9396e650d23084bfeae0d2670b5ffcf731a85 (diff) |
Remove unused texunit parameter to ctx->Driver.GenerateMipmap()
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index c2ef67ba6d..37ef2a865b 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -335,8 +335,7 @@ struct dd_function_table { /** * Called by glGenerateMipmap() or when GL_GENERATE_MIPMAP_SGIS is enabled. */ - void (*GenerateMipmap)(GLcontext *ctx, GLenum target, - const struct gl_texture_unit *texUnit, + void (*GenerateMipmap)(GLcontext *ctx, GLenum target, struct gl_texture_object *texObj); /** |