From: Brian Paul Date: Sat, 17 Mar 2012 22:30:02 +0000 (-0600) Subject: mesa: add comments in _mesa_test_texobj_completeness() related to the spec X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fbbbb98fc4b5b25321491f3ee46692bd819259a4;p=mesa.git mesa: add comments in _mesa_test_texobj_completeness() related to the spec Reviewed-by: José Fonseca Reviewed-by: Eric Anholt --- 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);