- Port 3.4 texture utils, texture format work to 3.5 (including new

FetchTexel routines).
- Initial hooks for GL_EXT_texture_filter_anisotropic.
This commit is contained in:
Gareth Hughes
2001-03-18 08:53:49 +00:00
parent 6e550baa0a
commit 2c3d34c905
19 changed files with 2364 additions and 1824 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: texobj.c,v 1.44 2001/03/12 00:48:39 gareth Exp $ */
/* $Id: texobj.c,v 1.45 2001/03/18 08:53:49 gareth Exp $ */
/*
* Mesa 3-D graphics library
@@ -79,6 +79,7 @@ _mesa_alloc_texture_object( struct gl_shared_state *shared,
obj->MaxLod = 1000.0;
obj->BaseLevel = 0;
obj->MaxLevel = 1000;
obj->MaxAnisotropy = 1.0;
obj->CompareFlag = GL_FALSE;
obj->CompareOperator = GL_TEXTURE_LEQUAL_R_SGIX;
obj->ShadowAmbient = 0;