Searched defs:VkPipelineCacheCreateInfo (Results 1 - 2 of 2) sorted by relevance

/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h1689 typedef struct VkPipelineCacheCreateInfo { struct
1695 } VkPipelineCacheCreateInfo; typedef in typeref:struct:VkPipelineCacheCreateInfo
2314 typedef VkResult (VKAPI_PTR *PFN_vkCreatePipelineCache)(VkDevice device, const VkPipelineCacheCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkPipelineCache* pPipelineCache);
2720 const VkPipelineCacheCreateInfo* pCreateInfo,
H A Dvulkan.hpp7124 PipelineCacheCreateInfo( VkPipelineCacheCreateInfo const & rhs )
7129 PipelineCacheCreateInfo& operator=( VkPipelineCacheCreateInfo const & rhs )
7165 operator const VkPipelineCacheCreateInfo&() const
7167 return *reinterpret_cast<const VkPipelineCacheCreateInfo*>(this);
7193 static_assert( sizeof( PipelineCacheCreateInfo ) == sizeof( VkPipelineCacheCreateInfo ), "struct and wrapper have different size!" );
16588 return static_cast<Result>( vkCreatePipelineCache( m_device, reinterpret_cast<const VkPipelineCacheCreateInfo*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkPipelineCache*>( pPipelineCache ) ) );
16595 Result result = static_cast<Result>( vkCreatePipelineCache( m_device, reinterpret_cast<const VkPipelineCacheCreateInfo*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator)), reinterpret_cast<VkPipelineCache*>( &pipelineCache ) ) );

Completed in 127 milliseconds