mirror of
https://gitea.windcorp.ru/Wind-Corporation/Progressia.git
synced 2025-04-22 00:50:45 +03:00
15 lines
320 B
C++
15 lines
320 B
C++
#pragma once
|
|
|
|
#include "vulkan_common.h"
|
|
#include "vulkan_physical_device.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace progressia::desktop {
|
|
|
|
const PhysicalDevice &
|
|
pickPhysicalDevice(std::vector<PhysicalDevice> &, Vulkan &,
|
|
const std::vector<const char *> &deviceExtensions);
|
|
|
|
} // namespace progressia::desktop
|