diff options
author | Brian <[email protected]> | 2007-05-23 16:49:32 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-05-23 16:51:30 -0600 |
commit | f116aed1ede0d802e9f3c5989290002975c00330 (patch) | |
tree | 85f3bc1d3df1953fd787d191f795b904e1c8410e /src/mesa/main/attrib.c | |
parent | e5ed09e60e32cf7d5afc778321e417ea97fe8494 (diff) |
restore GL_TEXTURE_LOD_BIAS in _mesa_PopAttrib(), bug 11049
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r-- | src/mesa/main/attrib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 0ee3418fddb..1aa0a02fc78 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -782,6 +782,7 @@ pop_texture_group(GLcontext *ctx, const struct gl_texture_attrib *texAttrib) _mesa_TexParameteri(target, GL_TEXTURE_MAG_FILTER, obj->MagFilter); _mesa_TexParameterf(target, GL_TEXTURE_MIN_LOD, obj->MinLod); _mesa_TexParameterf(target, GL_TEXTURE_MAX_LOD, obj->MaxLod); + _mesa_TexParameterf(target, GL_TEXTURE_LOD_BIAS, obj->LodBias); _mesa_TexParameteri(target, GL_TEXTURE_BASE_LEVEL, obj->BaseLevel); if (target != GL_TEXTURE_RECTANGLE_ARB) _mesa_TexParameteri(target, GL_TEXTURE_MAX_LEVEL, obj->MaxLevel); |