Module: Mesa
Branch: master
Commit: 26f1ad65b988fe55ae12a99994e4c63aaab899a0
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=26f1ad65b988fe55ae12a99994e4c63aaab899a0

Author: Brian Paul <[email protected]>
Date:   Fri Oct 23 18:15:55 2009 -0600

mesa: simplify att->CubeMapFace assignment

---

 src/mesa/main/fbobject.c |    7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)

diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c
index 18f6cec..85d3d3d 100644
--- a/src/mesa/main/fbobject.c
+++ b/src/mesa/main/fbobject.c
@@ -240,12 +240,7 @@ _mesa_set_texture_attachment(GLcontext *ctx,
 
    /* always update these fields */
    att->TextureLevel = level;
-   if (IS_CUBE_FACE(texTarget)) {
-      att->CubeMapFace = texTarget - GL_TEXTURE_CUBE_MAP_POSITIVE_X;
-   }
-   else {
-      att->CubeMapFace = 0;
-   }
+   att->CubeMapFace = _mesa_tex_target_to_face(texTarget);
    att->Zoffset = zoffset;
    att->Complete = GL_FALSE;
 

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to