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

Author: Brian Paul <[email protected]>
Date:   Mon Oct 12 17:40:33 2009 -0600

intel: code clean-ups

---

 src/mesa/drivers/dri/intel/intel_mipmap_tree.c |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/mesa/drivers/dri/intel/intel_mipmap_tree.c 
b/src/mesa/drivers/dri/intel/intel_mipmap_tree.c
index d9d2edf..cc23a89 100644
--- a/src/mesa/drivers/dri/intel/intel_mipmap_tree.c
+++ b/src/mesa/drivers/dri/intel/intel_mipmap_tree.c
@@ -476,16 +476,17 @@ intel_miptree_image_data(struct intel_context *intel,
                         GLuint src_row_pitch,
                         GLuint src_image_pitch)
 {
-   GLuint depth = dst->level[level].depth;
+   const GLuint depth = dst->level[level].depth;
    GLuint i;
-   GLuint height = 0;
 
    DBG("%s: %d/%d\n", __FUNCTION__, face, level);
    for (i = 0; i < depth; i++) {
       GLuint dst_offset = intel_miptree_image_offset(dst, face, level, i);
-      height = dst->level[level].height;
-      if(dst->compressed)
+      GLuint height = dst->level[level].height;
+
+      if (dst->compressed)
         height = (height + 3) / 4;
+
       intel_region_data(intel,
                        dst->region,
                        dst_offset,

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

Reply via email to