| 315 | } |
| 316 | |
| 317 | ArrayProxy( T const & value ) VULKAN_HPP_NOEXCEPT |
| 318 | : m_count( 1 ) |
| 319 | , m_ptr( &value ) |
| 320 | { |
| 321 | } |
| 322 | |
| 323 | ArrayProxy( uint32_t count, T const * ptr ) VULKAN_HPP_NOEXCEPT |
| 324 | : m_count( count ) |
nothing calls this directly
no outgoing calls
no test coverage detected