diff options
author | Matt Turner <[email protected]> | 2013-08-01 14:20:23 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-08-02 09:51:57 -0700 |
commit | 01bdad3173479176e579a8f6bb8309f683c5fa79 (patch) | |
tree | 00b318b2f6f5ee934245509a5a1191ce6a2f3e57 /src/mesa/main/texobj.c | |
parent | 9375c16e7247298ecef2ad0187b7782b13aba642 (diff) |
mesa: Update comments to match newer specs.
Old GL 1.x specs used 'b' but newer specs use 'p'. The line immediately
above the second hunk also uses 'p'.
Diffstat (limited to 'src/mesa/main/texobj.c')
-rw-r--r-- | src/mesa/main/texobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index 334dee77b91..c395b2963f5 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -553,7 +553,7 @@ _mesa_test_texobj_completeness( const struct gl_context *ctx, t->_MaxLevel = MIN2(t->_MaxLevel, t->MaxLevel); t->_MaxLevel = MIN2(t->_MaxLevel, maxLevels - 1); /* 'q' in the GL spec */ - /* Compute _MaxLambda = q - b (see the 1.2 spec) used during mipmapping */ + /* Compute _MaxLambda = q - p in the spec used during mipmapping */ t->_MaxLambda = (GLfloat) (t->_MaxLevel - baseLevel); if (t->Immutable) { |