diff options
author | Brian Paul <[email protected]> | 2012-03-17 16:30:02 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-03-20 08:23:32 -0600 |
commit | fbbbb98fc4b5b25321491f3ee46692bd819259a4 (patch) | |
tree | 468cca316637ce6db5d7bd715fdc520c5d8292a2 /src/mesa/main/texobj.c | |
parent | 085d2bb97e7686d2445fc95aa60281343e8d3116 (diff) |
mesa: add comments in _mesa_test_texobj_completeness() related to the spec
Reviewed-by: José Fonseca <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/texobj.c')
-rw-r--r-- | src/mesa/main/texobj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index 3d89ca179ce..2f2223a132b 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -497,9 +497,9 @@ _mesa_test_texobj_completeness( const struct gl_context *ctx, ASSERT(maxLevels > 0); - t->_MaxLevel = baseLevel + maxLog2; + t->_MaxLevel = baseLevel + maxLog2; /* 'p' in the GL spec */ t->_MaxLevel = MIN2(t->_MaxLevel, t->MaxLevel); - t->_MaxLevel = MIN2(t->_MaxLevel, maxLevels - 1); + t->_MaxLevel = MIN2(t->_MaxLevel, maxLevels - 1); /* 'q' in the GL spec */ /* Compute _MaxLambda = q - b (see the 1.2 spec) used during mipmapping */ t->_MaxLambda = (GLfloat) (t->_MaxLevel - baseLevel); |