#ifndef PHYSICALDEVICE_H #define PHYSICALDEVICE_H #include #include typedef struct _PhysicalDevice { VkPhysicalDevice device; // устройство VkPhysicalDeviceProperties properties; // параметры VkPhysicalDeviceFeatures features; // функции VkPhysicalDeviceMemoryProperties memory; // память std::vector queueFamilyProperties; // семейства очередей } PhysicalDevice; #endif // PHYSICALDEVICE_H