diff options
author | Eric Anholt <[email protected]> | 2011-06-09 17:01:57 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-06-14 11:17:39 -0700 |
commit | 56965aa007c2c6029204d617c0edcf142603e98d (patch) | |
tree | a6403fd59d6be864f5c137dd582cf992f1aab937 /src | |
parent | f94fef83db10f0c9327bd3dd43510ad31c94d82a (diff) |
intel: Drop dead preinitialization of align_w, align_h.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_tex_layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_tex_layout.c b/src/mesa/drivers/dri/intel/intel_tex_layout.c index 32c34dad2b1..91ee55e2237 100644 --- a/src/mesa/drivers/dri/intel/intel_tex_layout.c +++ b/src/mesa/drivers/dri/intel/intel_tex_layout.c @@ -54,7 +54,7 @@ void i945_miptree_layout_2d(struct intel_context *intel, struct intel_mipmap_tree *mt, uint32_t tiling, int nr_images) { - GLuint align_h = 2, align_w = 4; + GLuint align_h, align_w; GLuint level; GLuint x = 0; GLuint y = 0; |