Module: Mesa Branch: master Commit: faa615a79816512361a6b5ccafa2a32081fbb4d3 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=faa615a79816512361a6b5ccafa2a32081fbb4d3
Author: Kenneth Graunke <[email protected]> Date: Tue Dec 30 12:21:03 2014 -0800 i965: Use WARN_ONCE for the single-primitive-exceeded-aperture message. This makes it show up via ARB_debug_output and is also less code. Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> --- src/mesa/drivers/dri/i965/brw_draw.c | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_draw.c b/src/mesa/drivers/dri/i965/brw_draw.c index c581cc0..5cd3f01 100644 --- a/src/mesa/drivers/dri/i965/brw_draw.c +++ b/src/mesa/drivers/dri/i965/brw_draw.c @@ -520,15 +520,10 @@ retry: fail_next = true; goto retry; } else { - if (intel_batchbuffer_flush(brw) == -ENOSPC) { - static bool warned = false; - - if (!warned) { - fprintf(stderr, "i965: Single primitive emit exceeded" - "available aperture space\n"); - warned = true; - } - } + int ret = intel_batchbuffer_flush(brw); + WARN_ONCE(ret == -ENOSPC, + "i965: Single primitive emit exceeded " + "available aperture space\n"); } } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
