From: Bas Nieuwenhuizen Date: Thu, 19 Oct 2017 23:08:30 +0000 (+0200) Subject: radv: Only emit TES when it exists. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f82797b56d9646798c3f02eca2878b6702cbe700;p=mesa.git radv: Only emit TES when it exists. Reviewed-by: Dave Airlie --- diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c index a62aa6ccb9c..3dc356ca8e0 100644 --- a/src/amd/vulkan/radv_cmd_buffer.c +++ b/src/amd/vulkan/radv_cmd_buffer.c @@ -768,10 +768,12 @@ radv_emit_tess_shaders(struct radv_cmd_buffer *cmd_buffer, tcs = pipeline->shaders[MESA_SHADER_TESS_CTRL]; tes = pipeline->shaders[MESA_SHADER_TESS_EVAL]; - if (tes->info.tes.as_es) - radv_emit_hw_es(cmd_buffer, tes, &tes->info.tes.es_info); - else - radv_emit_hw_vs(cmd_buffer, pipeline, tes, &tes->info.tes.outinfo); + if (tes) { + if (tes->info.tes.as_es) + radv_emit_hw_es(cmd_buffer, tes, &tes->info.tes.es_info); + else + radv_emit_hw_vs(cmd_buffer, pipeline, tes, &tes->info.tes.outinfo); + } radv_emit_hw_hs(cmd_buffer, tcs);