mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-15 01:26:06 +00:00
And use it to print the driver version at the start of dawn_end2end_tests. This will help when figuring out issues happening on CQ but not necessarily locally. Bug: None Change-Id: Ibdb9ab8cab53cc1e1cf8a807da53edeca616bed9 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/29602 Reviewed-by: Stephen White <senorblanco@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
92 lines
3.3 KiB
C++
92 lines
3.3 KiB
C++
// Copyright 2017 The Dawn Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef DAWNNATIVE_VULKAN_VULKANINFO_H_
|
|
#define DAWNNATIVE_VULKAN_VULKANINFO_H_
|
|
|
|
#include "common/vulkan_platform.h"
|
|
#include "dawn_native/Error.h"
|
|
#include "dawn_native/vulkan/VulkanExtensions.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace dawn_native { namespace vulkan {
|
|
|
|
class Adapter;
|
|
class Backend;
|
|
|
|
extern const char kLayerNameKhronosValidation[];
|
|
extern const char kLayerNameLunargVKTrace[];
|
|
extern const char kLayerNameRenderDocCapture[];
|
|
extern const char kLayerNameFuchsiaImagePipeSwapchain[];
|
|
|
|
// Global information - gathered before the instance is created
|
|
struct VulkanGlobalKnobs {
|
|
// Layers
|
|
bool validation = false;
|
|
bool vktrace = false;
|
|
bool renderDocCapture = false;
|
|
bool fuchsiaImagePipeSwapchain = false;
|
|
|
|
bool HasExt(InstanceExt ext) const;
|
|
InstanceExtSet extensions;
|
|
};
|
|
|
|
struct VulkanGlobalInfo : VulkanGlobalKnobs {
|
|
std::vector<VkLayerProperties> layers;
|
|
uint32_t apiVersion;
|
|
// TODO(cwallez@chromium.org): layer instance extensions
|
|
};
|
|
|
|
// Device information - gathered before the device is created.
|
|
struct VulkanDeviceKnobs {
|
|
VkPhysicalDeviceFeatures features;
|
|
VkPhysicalDeviceShaderFloat16Int8FeaturesKHR shaderFloat16Int8Features;
|
|
VkPhysicalDevice16BitStorageFeaturesKHR _16BitStorageFeatures;
|
|
VkPhysicalDeviceSubgroupSizeControlFeaturesEXT subgroupSizeControlFeatures;
|
|
|
|
bool HasExt(DeviceExt ext) const;
|
|
DeviceExtSet extensions;
|
|
};
|
|
|
|
struct VulkanDeviceInfo : VulkanDeviceKnobs {
|
|
VkPhysicalDeviceProperties properties;
|
|
VkPhysicalDeviceDriverProperties driverProperties;
|
|
VkPhysicalDeviceSubgroupSizeControlPropertiesEXT subgroupSizeControlProperties;
|
|
|
|
std::vector<VkQueueFamilyProperties> queueFamilies;
|
|
|
|
std::vector<VkMemoryType> memoryTypes;
|
|
std::vector<VkMemoryHeap> memoryHeaps;
|
|
|
|
std::vector<VkLayerProperties> layers;
|
|
// TODO(cwallez@chromium.org): layer instance extensions
|
|
};
|
|
|
|
struct VulkanSurfaceInfo {
|
|
VkSurfaceCapabilitiesKHR capabilities;
|
|
std::vector<VkSurfaceFormatKHR> formats;
|
|
std::vector<VkPresentModeKHR> presentModes;
|
|
std::vector<bool> supportedQueueFamilies;
|
|
};
|
|
|
|
ResultOrError<VulkanGlobalInfo> GatherGlobalInfo(const Backend& backend);
|
|
ResultOrError<std::vector<VkPhysicalDevice>> GetPhysicalDevices(const Backend& backend);
|
|
ResultOrError<VulkanDeviceInfo> GatherDeviceInfo(const Adapter& adapter);
|
|
ResultOrError<VulkanSurfaceInfo> GatherSurfaceInfo(const Adapter& adapter,
|
|
VkSurfaceKHR surface);
|
|
}} // namespace dawn_native::vulkan
|
|
|
|
#endif // DAWNNATIVE_VULKAN_VULKANINFO_H_
|