intel: Fix an unused variable warning in the release build.
authorEric Anholt <eric@anholt.net>
Thu, 11 Apr 2013 17:14:58 +0000 (10:14 -0700)
committerEric Anholt <eric@anholt.net>
Fri, 12 Apr 2013 23:32:13 +0000 (16:32 -0700)
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/drivers/dri/intel/intel_mipmap_tree.c

index 7da020103e2a6188cbd1510abe42943ce31ad07f..47f81b13a5ebb11e1ef471b19de69b8cdc531a16 100644 (file)
@@ -510,7 +510,6 @@ intel_miptree_create_for_dri2_buffer(struct intel_context *intel,
 {
    struct intel_mipmap_tree *singlesample_mt = NULL;
    struct intel_mipmap_tree *multisample_mt = NULL;
-   GLenum base_format = _mesa_get_format_base_format(format);
 
    /* Only the front and back buffers, which are color buffers, are shared
     * through DRI2.
@@ -518,7 +517,8 @@ intel_miptree_create_for_dri2_buffer(struct intel_context *intel,
    assert(dri_attachment == __DRI_BUFFER_BACK_LEFT ||
           dri_attachment == __DRI_BUFFER_FRONT_LEFT ||
           dri_attachment == __DRI_BUFFER_FAKE_FRONT_LEFT);
-   assert(base_format == GL_RGB || base_format == GL_RGBA);
+   assert(_mesa_get_format_base_format(format) == GL_RGB ||
+          _mesa_get_format_base_format(format) == GL_RGBA);
 
    singlesample_mt = intel_miptree_create_for_region(intel, GL_TEXTURE_2D,
                                                      format, region);