diff options
author | Gareth Hughes <[email protected]> | 2001-03-18 08:53:49 +0000 |
---|---|---|
committer | Gareth Hughes <[email protected]> | 2001-03-18 08:53:49 +0000 |
commit | 2c3d34c905fa6b831a066afae83b938de05eb241 (patch) | |
tree | 8905ffec020f38687d4e1df313022bb3bef8f467 /src/mesa/main/attrib.c | |
parent | 6e550baa0a2b72bb0e4f5b19fdf74e5d3f377565 (diff) |
- Port 3.4 texture utils, texture format work to 3.5 (including new
FetchTexel routines).
- Initial hooks for GL_EXT_texture_filter_anisotropic.
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r-- | src/mesa/main/attrib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 700106ea8f1..a26dcd2e3e9 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1,4 +1,4 @@ -/* $Id: attrib.c,v 1.46 2001/03/12 00:48:37 gareth Exp $ */ +/* $Id: attrib.c,v 1.47 2001/03/18 08:53:49 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -101,6 +101,7 @@ copy_texobj_state( struct gl_texture_object *dest, dest->MaxLod = src->MaxLod; dest->BaseLevel = src->BaseLevel; dest->MaxLevel = src->MaxLevel; + dest->MaxAnisotropy = src->MaxAnisotropy; dest->CompareFlag = src->CompareFlag; dest->CompareOperator = src->CompareOperator; dest->ShadowAmbient = src->ShadowAmbient; |