| 46 | static FastArray<IdString> msInstanceExtensions; |
| 47 | |
| 48 | VulkanDevice::VulkanDevice( VkInstance instance, uint32 deviceIdx, |
| 49 | VulkanRenderSystem *renderSystem ) : |
| 50 | mInstance( instance ), |
| 51 | mPhysicalDevice( 0 ), |
| 52 | mDevice( 0 ), |
| 53 | mPresentQueue( 0 ), |
| 54 | mVaoManager( 0 ), |
| 55 | mRenderSystem( renderSystem ), |
| 56 | mSupportedStages( 0xFFFFFFFF ), |
| 57 | mIsExternal( false ) |
| 58 | { |
| 59 | memset( &mDeviceMemoryProperties, 0, sizeof( mDeviceMemoryProperties ) ); |
| 60 | createPhysicalDevice( deviceIdx ); |
| 61 | } |
| 62 | //------------------------------------------------------------------------- |
| 63 | VulkanDevice::VulkanDevice( VkInstance instance, const VulkanExternalDevice &externalDevice, |
| 64 | VulkanRenderSystem *renderSystem ) : |
nothing calls this directly
no test coverage detected