summaryrefslogtreecommitdiffstats
path: root/gfx/angle/checkout/src/gpu_info_util/SystemInfo_vulkan.h
blob: 10c7d69295f0488fba06d7065a1f4d428c9bceef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Copyright 2020 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

// SystemInfo_vulkan.h: Reusable Vulkan implementation for SystemInfo.h

#ifndef GPU_INFO_UTIL_SYSTEM_INFO_VULKAN_H_
#define GPU_INFO_UTIL_SYSTEM_INFO_VULKAN_H_

#include "common/vulkan/vulkan_icd.h"

namespace angle
{
struct SystemInfo;

// Reusable vulkan implementation of GetSystemInfo(). See SystemInfo.h.
bool GetSystemInfoVulkan(SystemInfo *info);
bool GetSystemInfoVulkanWithICD(SystemInfo *info, vk::ICD preferredICD);
}  // namespace angle

#endif  // GPU_INFO_UTIL_SYSTEM_INFO_VULKAN_H_