mesa: Adjust _MaxLevel computation to account for views

Signed-off-by: Chris Forbes <chrisf@ijw.co.nz>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Acked-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Chris Forbes 2014-01-25 10:36:04 +13:00
parent 61e264f4fc
commit c1b017472b
1 changed files with 7 additions and 0 deletions

View File

@ -559,6 +559,13 @@ _mesa_test_texobj_completeness( const struct gl_context *ctx,
/* 'q' in the GL spec */
maxLevels - 1);
if (t->Immutable) {
/* Adjust max level for views: the data store may have more levels than
* the view exposes.
*/
t->_MaxLevel = MIN2(t->_MaxLevel, t->NumLevels - 1);
}
/* Compute _MaxLambda = q - p in the spec used during mipmapping */
t->_MaxLambda = (GLfloat) (t->_MaxLevel - baseLevel);