| 80 | } |
| 81 | |
| 82 | VkPhysicalDevice VkRenderFramework::Gpu() const { |
| 83 | EXPECT_NE((VkInstance)0, instance_); // Invalid to request gpu before instance exists |
| 84 | return gpu_; |
| 85 | } |
| 86 | |
| 87 | const VkPhysicalDeviceProperties& VkRenderFramework::PhysicalDeviceProps() const { |
| 88 | EXPECT_NE((VkPhysicalDevice)0, gpu_); // Invalid to request physical device properties before gpu |
no outgoing calls
no test coverage detected