summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2016-03-22 16:11:53 -0700
committerJason Ekstrand <[email protected]>2016-03-22 16:11:53 -0700
commit4844723405d901afee3ab6a4a6c642ae8ef8bcb4 (patch)
tree9d696edea661d7dbe85208811e46b8347e8b4e18 /src
parent8dd86e8aa7e955844e447c5a2794b0c8cc811c5a (diff)
anv: Don't assert-fail if someone asks for a non-existent entrypoint
Diffstat (limited to 'src')
-rw-r--r--src/intel/vulkan/anv_entrypoints_gen.py1
1 files changed, 0 insertions, 1 deletions
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];
}