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/fbobject.c | |
parent | e286b63c8faa116c3367b1987654d119db04268c (diff) |
mesa: add some comments about mipmap generation
Trivial.
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r-- | src/mesa/main/fbobject.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index f63ed8cd3db..b5b55fc83d1 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -2977,6 +2977,11 @@ invalid_pname_enum: } +/** + * Generate all the mipmap levels below the base level. + * Note: this GL function would be more useful if one could specify a + * cube face, a set of array slices, etc. + */ void GLAPIENTRY _mesa_GenerateMipmap(GLenum target) { |