| 435 | } |
| 436 | |
| 437 | void ApiVulkanSample::create_pipeline_cache() |
| 438 | { |
| 439 | VkPipelineCacheCreateInfo pipeline_cache_create_info = {}; |
| 440 | pipeline_cache_create_info.sType = VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO; |
| 441 | VK_CHECK(vkCreatePipelineCache(get_device().get_handle(), &pipeline_cache_create_info, nullptr, &pipeline_cache)); |
| 442 | } |
| 443 | |
| 444 | VkPipelineShaderStageCreateInfo ApiVulkanSample::load_shader(const std::string &file, VkShaderStageFlagBits stage) |
| 445 | { |
nothing calls this directly
no test coverage detected