We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd99896 commit 83bcbddCopy full SHA for 83bcbdd
1 file changed
layers/core_checks/cc_pipeline_graphics.cpp
@@ -4251,7 +4251,10 @@ bool CoreChecks::ValidateDrawPipelineVertexBinding(const vvl::CommandBuffer &cb_
4251
};
4252
4253
const spirv::EntryPoint *vertex_entry_point = last_bound.GetVertexEntryPoint();
4254
- ASSERT_AND_RETURN_SKIP(vertex_entry_point);
+ // Can be NULL if pipeline binaries are used
4255
+ if (!vertex_entry_point) {
4256
+ return skip;
4257
+ }
4258
vvl::unordered_set<uint32_t> spirv_input_locations;
4259
for (const auto &pair : vertex_entry_point->input_interface_slots) {
4260
spirv_input_locations.emplace(pair.first.Location());
0 commit comments