diff options
author | Brian <[email protected]> | 2008-02-08 14:45:58 -0700 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2008-05-09 13:33:29 +1000 |
commit | d4e1d85dba8ec4a37f68a284b5a2be15b4f2987a (patch) | |
tree | 282ed9a72dde1b243104c3da0a3742f9ba159e30 /src/mesa/main/dd.h | |
parent | a638676473bd7bf2d47275ed2fd708e5b9d47e0b (diff) |
Remove unused texunit parameter to ctx->Driver.GenerateMipmap()
(cherry picked from commit c3395f4473c8fdf75d04c0dd72e687bc8d8127a7)
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 bfbb96aebb7..e3ded41acac 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -330,8 +330,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); /** |