intel: Silence "warning: unused parameter ‘depth0’"
authorIan Romanick <ian.d.romanick@intel.com>
Fri, 26 Aug 2011 17:15:47 +0000 (10:15 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Fri, 9 Sep 2011 19:01:51 +0000 (12:01 -0700)
The depth0 parameter was not used in intel_miptree_create_for_region,
so remove it.  All of the places that call this function, pass 1 for
that parameter, and the place where it looks like it should have been
used (the call to intel_miptree_create_internal) also had 1 hard
coded.

Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/intel/intel_mipmap_tree.c
src/mesa/drivers/dri/intel/intel_mipmap_tree.h
src/mesa/drivers/dri/intel/intel_tex_image.c

index 72cdd4c0f115b5b595be4be19dff75b02fe07b98..7739fa4183fa98cb0ff1ec0b8b6a7add5b0be83c 100644 (file)
@@ -161,8 +161,7 @@ struct intel_mipmap_tree *
 intel_miptree_create_for_region(struct intel_context *intel,
                                GLenum target,
                                gl_format format,
-                               struct intel_region *region,
-                               GLuint depth0)
+                               struct intel_region *region)
 {
    struct intel_mipmap_tree *mt;
 
index ff746d77f9684c1695ba358d49a6ef33419ff391..7f20319581f62f3a780076ace1470ef81b993853 100644 (file)
@@ -148,8 +148,7 @@ struct intel_mipmap_tree *
 intel_miptree_create_for_region(struct intel_context *intel,
                                GLenum target,
                                gl_format format,
-                               struct intel_region *region,
-                               GLuint depth0);
+                               struct intel_region *region);
 
 int intel_miptree_pitch_align (struct intel_context *intel,
                               struct intel_mipmap_tree *mt,
index 29a6d3be2a6d1fbfaa043b95741cc3c6167b09a8..2bbd9520c07fa2aa4872bfc3dd0ccf4e2e65a09d 100644 (file)
@@ -790,8 +790,7 @@ intelSetTexBuffer2(__DRIcontext *pDRICtx, GLint target,
       texFormat = MESA_FORMAT_ARGB8888;
    }
 
-   mt = intel_miptree_create_for_region(intel, target, texFormat,
-                                       rb->region, 1);
+   mt = intel_miptree_create_for_region(intel, target, texFormat, rb->region);
    if (mt == NULL)
        return;
 
@@ -853,7 +852,7 @@ intel_image_target_texture_2d(struct gl_context *ctx, GLenum target,
       return;
 
    mt = intel_miptree_create_for_region(intel, target, image->format,
-                                       image->region, 1);
+                                       image->region);
    if (mt == NULL)
        return;