projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cca4ded
)
added missing code to copy texrect state
author
Brian Paul
<brian.paul@tungstengraphics.com>
Wed, 23 Oct 2002 14:53:27 +0000
(14:53 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Wed, 23 Oct 2002 14:53:27 +0000
(14:53 +0000)
src/mesa/main/texstate.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/texstate.c
b/src/mesa/main/texstate.c
index ce40c56f13f8e40410c3af51927d911390cd1830..373b464a3c4fb8699c63b88df2a294d57dc21099 100644
(file)
--- a/
src/mesa/main/texstate.c
+++ b/
src/mesa/main/texstate.c
@@
-1,4
+1,4
@@
-/* $Id: texstate.c,v 1.8
2 2002/10/21 15:52:34
brianp Exp $ */
+/* $Id: texstate.c,v 1.8
3 2002/10/23 14:53:27
brianp Exp $ */
/*
* Mesa 3-D graphics library
@@
-114,6
+114,8
@@
_mesa_copy_texture_state( const GLcontext *src, GLcontext *dst )
src->Texture.Unit[i].Current3D);
_mesa_copy_texture_object(dst->Texture.Unit[i].CurrentCubeMap,
src->Texture.Unit[i].CurrentCubeMap);
+ _mesa_copy_texture_object(dst->Texture.Unit[i].CurrentRect,
+ src->Texture.Unit[i].CurrentRect);
}
}