diff options
author | Ian Romanick <[email protected]> | 2011-08-26 09:57:51 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-09-09 12:01:51 -0700 |
commit | 36a91e45f755af164232ef908419bc4cb64ba45b (patch) | |
tree | 0f08b21b33ab302de8135cf159c5ea70ee37641a /src/mesa/drivers/dri/i965/brw_tex_layout.c | |
parent | 17fa6772d7e223f940dd8ec4e4f6cf8cab9a03c7 (diff) |
intel: Silence several "warning: unused parameter"
The intel_context and tiling parameters were not used by any if the
i9[14]5_miptree_layout or the functions they call, and the tiling parameter was
not used by brw_miptree_layout. Remove the unnecessary parameters.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_tex_layout.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_tex_layout.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_tex_layout.c b/src/mesa/drivers/dri/i965/brw_tex_layout.c index b5d2cf31290..16ce8f68b81 100644 --- a/src/mesa/drivers/dri/i965/brw_tex_layout.c +++ b/src/mesa/drivers/dri/i965/brw_tex_layout.c @@ -40,8 +40,7 @@ #define FILE_DEBUG_FLAG DEBUG_MIPTREE GLboolean brw_miptree_layout(struct intel_context *intel, - struct intel_mipmap_tree *mt, - uint32_t tiling) + struct intel_mipmap_tree *mt) { /* XXX: these vary depending on image format: */ /* GLint align_w = 4; */ @@ -68,7 +67,7 @@ GLboolean brw_miptree_layout(struct intel_context *intel, if (mt->compressed) qpitch /= 4; - i945_miptree_layout_2d(intel, mt, tiling, 6); + i945_miptree_layout_2d(mt, 6); for (level = mt->first_level; level <= mt->last_level; level++) { for (q = 0; q < 6; q++) { @@ -162,7 +161,7 @@ GLboolean brw_miptree_layout(struct intel_context *intel, } default: - i945_miptree_layout_2d(intel, mt, tiling, 1); + i945_miptree_layout_2d(mt, 1); break; } DBG("%s: %dx%dx%d\n", __FUNCTION__, |