diff --git a/.clang-format b/.clang-format deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/src/intel/dev/intel_debug.c b/src/intel/dev/intel_debug.c index c724d01ac4e..74a98fd0fc0 100644 --- a/src/intel/dev/intel_debug.c +++ b/src/intel/dev/intel_debug.c @@ -126,7 +126,6 @@ static const struct debug_control_bitset debug_control[] = { OPT1("no-send-gather", DEBUG_NO_SEND_GATHER), OPT1("no-vrt", DEBUG_NO_VRT), OPT1("shaders-lineno", DEBUG_SHADERS_LINENO), - OPT1("show_shader_stage", DEBUG_SHOW_SHADER_STAGE), { NULL, } #undef OPT1 #undef OPT2 diff --git a/src/intel/dev/intel_debug.h b/src/intel/dev/intel_debug.h index 1f250d6bb1a..313ae1945c1 100644 --- a/src/intel/dev/intel_debug.h +++ b/src/intel/dev/intel_debug.h @@ -98,7 +98,6 @@ enum intel_debug_flag { DEBUG_NO_VRT, DEBUG_RT_NO_TRACE, DEBUG_SHADERS_LINENO, - DEBUG_SHOW_SHADER_STAGE, /* Keep the stages grouped */ DEBUG_VS, DEBUG_TCS, diff --git a/src/intel/vulkan/anv_pipeline_cache.c b/src/intel/vulkan/anv_pipeline_cache.c index c41dee7f83b..1146284c2c1 100644 --- a/src/intel/vulkan/anv_pipeline_cache.c +++ b/src/intel/vulkan/anv_pipeline_cache.c @@ -120,8 +120,6 @@ anv_shader_internal_create(struct anv_device *device, &anv_shader_internal_ops, obj_key_data, key_size); shader->stage = stage; - if(INTEL_DEBUG(DEBUG_SHOW_SHADER_STAGE)) - fprintf(stderr, "Stage: %s\n", mesa_shader_stage_name(shader->stage)); shader->kernel = anv_state_pool_alloc(&device->instruction_state_pool, kernel_size, 64);