From: Eric Anholt Date: Thu, 28 Mar 2013 22:58:25 +0000 (-0700) Subject: intel: Remove a never-taken debug print path. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9dd19575d33b907be655586fbaf9569d9afc2711;p=mesa.git intel: Remove a never-taken debug print path. Alessandro Pignotti noted when I added this code in commit 0e723b135bfd59868c92c3ae243f1adaedaec3a5 that it's in the else block for "if (busy)", so this debug print couldn't happen. Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/intel/intel_buffer_objects.c b/src/mesa/drivers/dri/intel/intel_buffer_objects.c index ac265db4a66..e270db86cf6 100644 --- a/src/mesa/drivers/dri/intel/intel_buffer_objects.c +++ b/src/mesa/drivers/dri/intel/intel_buffer_objects.c @@ -227,11 +227,6 @@ intel_bufferobj_subdata(struct gl_context * ctx, drm_intel_bo_unreference(temp_bo); } } else { - if (unlikely(intel->perf_debug)) { - if (drm_intel_bo_busy(intel_obj->buffer)) { - perf_debug("Stalling on the GPU in glBufferSubData().\n"); - } - } drm_intel_bo_subdata(intel_obj->buffer, offset, size, data); } }