Edit

kc3-lang/angle/src/gpu_info_util/SystemInfo_vulkan.h

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2021-11-11 11:43:30
    Hash : d27552f2
    Message : Re-land: "Vulkan: Allow SystemInfo to pick ICD." Re-land fixes build on iOS and Android with ANGLE/Vulkan. This will be used in conjunction with SwiftShader. Bug: angleproject:6496 Change-Id: Id38403da1e377bba293dc8368d1c1aac29bf56a9 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3282426 Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org>

  • src/gpu_info_util/SystemInfo_vulkan.h
  • //
    // 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_