From: Jordan Justen Date: Thu, 24 Sep 2015 07:19:58 +0000 (-0700) Subject: mesa/cs: Add MESA_VERBOSE=api support in DispatchCompute* X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1665d29ee3125743fd6daf3c43fc715f543d5669;p=mesa.git mesa/cs: Add MESA_VERBOSE=api support in DispatchCompute* Signed-off-by: Jordan Justen Reviewed-by: Kristian Høgsberg --- diff --git a/src/mesa/main/compute.c b/src/mesa/main/compute.c index a0120cf0c64..8bc3bcd25a0 100644 --- a/src/mesa/main/compute.c +++ b/src/mesa/main/compute.c @@ -34,6 +34,10 @@ _mesa_DispatchCompute(GLuint num_groups_x, GET_CURRENT_CONTEXT(ctx); const GLuint num_groups[3] = { num_groups_x, num_groups_y, num_groups_z }; + if (MESA_VERBOSE & VERBOSE_API) + _mesa_debug(ctx, "glDispatchCompute(%d, %d, %d)\n", + num_groups_x, num_groups_y, num_groups_z); + if (!_mesa_validate_DispatchCompute(ctx, num_groups)) return; @@ -45,6 +49,9 @@ _mesa_DispatchComputeIndirect(GLintptr indirect) { GET_CURRENT_CONTEXT(ctx); + if (MESA_VERBOSE & VERBOSE_API) + _mesa_debug(ctx, "glDispatchComputeIndirect(%d)\n", indirect); + if (!_mesa_validate_DispatchComputeIndirect(ctx, indirect)) return;