Searched defs:VkImageSubresourceRange (Results 1 - 5 of 5) sorted by relevance

/external/mesa3d/include/vulkan/
H A Dvulkan.h1671 typedef struct VkImageSubresourceRange { struct
1677 } VkImageSubresourceRange; typedef in typeref:struct:VkImageSubresourceRange
1687 VkImageSubresourceRange subresourceRange;
2227 VkImageSubresourceRange subresourceRange;
2381 typedef void (VKAPI_PTR *PFN_vkCmdClearColorImage)(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
2382 typedef void (VKAPI_PTR *PFN_vkCmdClearDepthStencilImage)(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
3079 const VkImageSubresourceRange* pRanges);
3087 const VkImageSubresourceRange* pRanges);
/external/skia/third_party/vulkan/vulkan/
H A Dvulkan.h1768 typedef struct VkImageSubresourceRange { struct
1774 } VkImageSubresourceRange; typedef in typeref:struct:VkImageSubresourceRange
1784 VkImageSubresourceRange subresourceRange;
2324 VkImageSubresourceRange subresourceRange;
2478 typedef void (VKAPI_PTR *PFN_vkCmdClearColorImage)(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
2479 typedef void (VKAPI_PTR *PFN_vkCmdClearDepthStencilImage)(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
3176 const VkImageSubresourceRange* pRanges);
3184 const VkImageSubresourceRange* pRanges);
/external/skqp/third_party/vulkan/vulkan/
H A Dvulkan.h1768 typedef struct VkImageSubresourceRange { struct
1774 } VkImageSubresourceRange; typedef in typeref:struct:VkImageSubresourceRange
1784 VkImageSubresourceRange subresourceRange;
2324 VkImageSubresourceRange subresourceRange;
2478 typedef void (VKAPI_PTR *PFN_vkCmdClearColorImage)(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
2479 typedef void (VKAPI_PTR *PFN_vkCmdClearDepthStencilImage)(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
3176 const VkImageSubresourceRange* pRanges);
3184 const VkImageSubresourceRange* pRanges);
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h1965 typedef struct VkImageSubresourceRange { struct
1971 } VkImageSubresourceRange; typedef in typeref:struct:VkImageSubresourceRange
1981 VkImageSubresourceRange subresourceRange;
2521 VkImageSubresourceRange subresourceRange;
2675 typedef void (VKAPI_PTR *PFN_vkCmdClearColorImage)(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
2676 typedef void (VKAPI_PTR *PFN_vkCmdClearDepthStencilImage)(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
3373 const VkImageSubresourceRange* pRanges);
3381 const VkImageSubresourceRange* pRanges);
H A Dvulkan.hpp16598 ImageSubresourceRange( VkImageSubresourceRange const & rhs )
16603 ImageSubresourceRange& operator=( VkImageSubresourceRange const & rhs )
16638 operator const VkImageSubresourceRange&() const
16640 return *reinterpret_cast<const VkImageSubresourceRange*>(this);
16663 static_assert( sizeof( ImageSubresourceRange ) == sizeof( VkImageSubresourceRange ), "struct and wrapper have different size!" );
26388 vkCmdClearColorImage( m_commandBuffer, static_cast<VkImage>( image ), static_cast<VkImageLayout>( imageLayout ), reinterpret_cast<const VkClearColorValue*>( pColor ), rangeCount, reinterpret_cast<const VkImageSubresourceRange*>( pRanges ) );
26393 vkCmdClearColorImage( m_commandBuffer, static_cast<VkImage>( image ), static_cast<VkImageLayout>( imageLayout ), reinterpret_cast<const VkClearColorValue*>( &color ), ranges.size() , reinterpret_cast<const VkImageSubresourceRange*>( ranges.data() ) );
26399 vkCmdClearDepthStencilImage( m_commandBuffer, static_cast<VkImage>( image ), static_cast<VkImageLayout>( imageLayout ), reinterpret_cast<const VkClearDepthStencilValue*>( pDepthStencil ), rangeCount, reinterpret_cast<const VkImageSubresourceRange*>( pRanges ) );
26404 vkCmdClearDepthStencilImage( m_commandBuffer, static_cast<VkImage>( image ), static_cast<VkImageLayout>( imageLayout ), reinterpret_cast<const VkClearDepthStencilValue*>( &depthStencil ), ranges.size() , reinterpret_cast<const VkImageSubresourceRange*>( ranges.data() ) );
[all...]

Completed in 289 milliseconds