Home | History | Annotate | Download | only in vulkan

Lines Matching defs:VkBufferCopy

3029     BufferCopy( VkBufferCopy const & rhs )
3034 BufferCopy& operator=( VkBufferCopy const & rhs )
3058 operator const VkBufferCopy&() const
3060 return *reinterpret_cast<const VkBufferCopy*>(this);
3079 static_assert( sizeof( BufferCopy ) == sizeof( VkBufferCopy ), "struct and wrapper have different size!" );
14091 vkCmdCopyBuffer( m_commandBuffer, static_cast<VkBuffer>( srcBuffer ), static_cast<VkBuffer>( dstBuffer ), regionCount, reinterpret_cast<const VkBufferCopy*>( pRegions ) );
14097 vkCmdCopyBuffer( m_commandBuffer, static_cast<VkBuffer>( srcBuffer ), static_cast<VkBuffer>( dstBuffer ), regions.size() , reinterpret_cast<const VkBufferCopy*>( regions.data() ) );