| 976 | } |
| 977 | |
| 978 | UUID::UUID( uint8_t const data[VK_UUID_SIZE] ) |
| 979 | { |
| 980 | memcpy( m_data, data, VK_UUID_SIZE * sizeof( uint8_t ) ); |
| 981 | } |
| 982 | |
| 983 | WindowData::WindowData( GLFWwindow * wnd, std::string const & name, vk::Extent2D const & extent ) : handle{ wnd }, name{ name }, extent{ extent } {} |
| 984 |
nothing calls this directly
no outgoing calls
no test coverage detected