diff options
author | Jason Ekstrand <[email protected]> | 2016-10-07 21:55:34 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-10-14 15:40:39 -0700 |
commit | 8e1a8dd47e1f6fb1849b149a42207b16ffd9c10a (patch) | |
tree | 1dd367f3a880d9f359337bc5e73e001fa5937791 /src/intel/vulkan/anv_genX.h | |
parent | 7df46b7533a0ff257dbdb1b844ce0f4fc1c266ac (diff) |
anv: Move Create*Pipelines into genX_cmd_buffer.c
Now that we don't have meta, we have no need for a gen-agnostic pipeline
create path. We can, instead, just generate one Create*Pipelines function
per gen and be done with it.
Signed-off-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_genX.h')
-rw-r--r-- | src/intel/vulkan/anv_genX.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/intel/vulkan/anv_genX.h b/src/intel/vulkan/anv_genX.h index 1dc4af43c16..27c55b9e684 100644 --- a/src/intel/vulkan/anv_genX.h +++ b/src/intel/vulkan/anv_genX.h @@ -73,12 +73,5 @@ genX(graphics_pipeline_create)(VkDevice _device, const VkAllocationCallbacks *alloc, VkPipeline *pPipeline); -VkResult -genX(compute_pipeline_create)(VkDevice _device, - struct anv_pipeline_cache *cache, - const VkComputePipelineCreateInfo *pCreateInfo, - const VkAllocationCallbacks *alloc, - VkPipeline *pPipeline); - void genX(blorp_exec)(struct blorp_batch *batch, const struct blorp_params *params); |