v3dv: assert on vkCreateComputePipelines

So we can quickly identify tests that crash because they use compute shaders

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6766>
This commit is contained in:
Iago Toral Quiroga 2020-03-19 11:34:33 +01:00 committed by Marge Bot
parent df2bb5b01b
commit d471c47c79
1 changed files with 11 additions and 0 deletions

View File

@ -2012,3 +2012,14 @@ v3dv_CreateGraphicsPipelines(VkDevice _device,
return result;
}
VkResult
v3dv_CreateComputePipelines(VkDevice device,
VkPipelineCache pipelineCache,
uint32_t createInfoCount,
const VkComputePipelineCreateInfo *pCreateInfos,
const VkAllocationCallbacks *pAllocator,
VkPipeline *pPipelines)
{
unreachable("vkCreateComputePipelines not implemented");
}