Edit

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

Branch :

  • Show log

    Commit

  • Author : Corentin Wallez
    Date : 2017-02-16 10:58:46
    Hash : d83f64f5
    Message : gpu_info_util: Implement GetSystemInfo on OSX Also adds a test that prints the gathered information for manual checking and to help know what the system is when looking at the logs. BUG=angleproject:1874 Change-Id: Icb0cc390c9808fd8db0f966d667b94dde4b94e62 Reviewed-on: https://chromium-review.googlesource.com/443845 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Geoff Lang <geofflang@chromium.org> Reviewed-by: Zhenyao Mo <zmo@chromium.org>

  • src/gpu_info_util/SystemInfo_internal.h
  • //
    // Copyright (c) 2013-2017 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_internal.h: Functions used by the SystemInfo_* files and unittests
    
    #ifndef GPU_INFO_UTIL_SYSTEM_INFO_INTERNAL_H_
    #define GPU_INFO_UTIL_SYSTEM_INFO_INTERNAL_H_
    
    #include "gpu_info_util/SystemInfo.h"
    
    namespace angle
    {
    
    // Defined in SystemInfo_libpci when GPU_INFO_USE_LIBPCI is defined.
    bool GetPCIDevicesWithLibPCI(std::vector<GPUDeviceInfo> *devices);
    // Defined in SystemInfo_x11 when GPU_INFO_USE_X11 is defined.
    bool GetNvidiaDriverVersionWithXNVCtrl(std::string *version);
    
    // Target specific helper functions that can be compiled on all targets
    // Live in SystemInfo.cpp
    bool ParseAMDBrahmaDriverVersion(const std::string &content, std::string *version);
    bool ParseAMDCatalystDriverVersion(const std::string &content, std::string *version);
    bool ParseMacMachineModel(const std::string &identifier,
                              std::string *type,
                              int32_t *major,
                              int32_t *minor);
    
    // In the case there are multiple GPUs, this finds the primary one and sets Optimus or AMD
    // Switchable
    void FindPrimaryGPU(SystemInfo *info);
    
    }  // namespace angle
    
    #endif  // GPU_INFO_UTIL_SYSTEM_INFO_INTERNAL_H_