diff options
author | Brian Paul <[email protected]> | 2014-01-31 17:38:35 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-02-02 06:52:37 -0700 |
commit | c55e3e6811413ce5c3aabfcf8dfcf5eb8a53499e (patch) | |
tree | ea6db776e97a9837350466eebcc569d010eff907 /src/mesa/main/dd.h | |
parent | e286b63c8faa116c3367b1987654d119db04268c (diff) |
mesa: add some comments about mipmap generation
Trivial.
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index e96cf3a95dd..0b2b84a65c1 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -256,6 +256,10 @@ struct dd_function_table { /** * Called by glGenerateMipmap() or when GL_GENERATE_MIPMAP_SGIS is enabled. + * Note that if the texture is a cube map, the <target> parameter will + * indicate which cube face to generate (GL_POSITIVE/NEGATIVE_X/Y/Z). + * texObj->BaseLevel is the level from which to generate the remaining + * mipmap levels. */ void (*GenerateMipmap)(struct gl_context *ctx, GLenum target, struct gl_texture_object *texObj); |