| 519 | using ArrayProxy<T>::ArrayProxy; |
| 520 | |
| 521 | StridedArrayProxy( uint32_t count, T const * ptr, uint32_t stride ) VULKAN_HPP_NOEXCEPT |
| 522 | : ArrayProxy<T>( count, ptr ) |
| 523 | , m_stride( stride ) |
| 524 | { |
| 525 | VULKAN_HPP_ASSERT( sizeof( T ) <= stride ); |
| 526 | } |
| 527 | |
| 528 | using ArrayProxy<T>::begin; |
| 529 |
nothing calls this directly
no outgoing calls
no test coverage detected