From: Jason Ekstrand Date: Tue, 22 Mar 2016 23:11:53 +0000 (-0700) Subject: anv: Don't assert-fail if someone asks for a non-existent entrypoint X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4844723405d901afee3ab6a4a6c642ae8ef8bcb4;p=mesa.git anv: Don't assert-fail if someone asks for a non-existent entrypoint --- diff --git a/src/intel/vulkan/anv_entrypoints_gen.py b/src/intel/vulkan/anv_entrypoints_gen.py index 1e4cfcb1755..cedecfeac70 100644 --- a/src/intel/vulkan/anv_entrypoints_gen.py +++ b/src/intel/vulkan/anv_entrypoints_gen.py @@ -210,7 +210,6 @@ anv_resolve_entrypoint(uint32_t index) return validate_layer.entrypoints[index]; if (dispatch_devinfo == NULL) { - assert(anv_layer.entrypoints[index]); return anv_layer.entrypoints[index]; }