diff options
author | Brian Paul <[email protected]> | 2001-02-20 16:42:25 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-02-20 16:42:25 +0000 |
commit | c499ce31baf820e84d133c2189f88e15a1a36672 (patch) | |
tree | 5fa0cc1d10f0e54703c7a0ceb55fcb4aa81c74e3 /src/mesa/main/attrib.c | |
parent | 0c75c4c41754a4f66cdc124b4328e92635b473fe (diff) |
Implemented GL_SGIX_shadow and GL_SGIX_shadow_texture.
Added some const keywords in the s/w texturing code.
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r-- | src/mesa/main/attrib.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 205c14b0241..746ca7332b4 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1,4 +1,4 @@ -/* $Id: attrib.c,v 1.43 2001/01/29 22:15:44 brianp Exp $ */ +/* $Id: attrib.c,v 1.44 2001/02/20 16:42:25 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -101,6 +101,9 @@ copy_texobj_state( struct gl_texture_object *dest, dest->MaxLod = src->MaxLod; dest->BaseLevel = src->BaseLevel; dest->MaxLevel = src->MaxLevel; + dest->CompareFlag = src->CompareFlag; + dest->CompareOperator = src->CompareOperator; + dest->ShadowAmbient = src->ShadowAmbient; dest->_MaxLevel = src->_MaxLevel; dest->_MaxLambda = src->_MaxLambda; dest->Palette = src->Palette; |