MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Hpp / StridedArrayProxy

Method StridedArrayProxy

vulkan/vulkan.hpp:521–526  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected