From 083e466f88e1203f08b7699fa34b05d0e45b3172 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 14 Dec 2000 20:25:56 +0000 Subject: Renamed texture object _P to _MaxLevel and _M to _MaxLambda. Now add BaseLevel in _MaxLevel computation. --- src/mesa/main/attrib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/main/attrib.c') diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index c6475ca5af..3fab941688 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1,4 +1,4 @@ -/* $Id: attrib.c,v 1.37 2000/11/27 18:59:09 brianp Exp $ */ +/* $Id: attrib.c,v 1.38 2000/12/14 20:25:56 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -85,8 +85,8 @@ copy_texobj_state( struct gl_texture_object *dest, dest->MaxLod = src->MaxLod; dest->BaseLevel = src->BaseLevel; dest->MaxLevel = src->MaxLevel; - dest->_P = src->_P; - dest->_M = src->_M; + dest->_MaxLevel = src->_MaxLevel; + dest->_MaxLambda = src->_MaxLambda; dest->Palette = src->Palette; dest->Complete = src->Complete; } -- cgit v1.2.3