60 lines
2.3 KiB
C++
60 lines
2.3 KiB
C++
// Copyright (c) 2018 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SHELL_BROWSER_API_GPU_INFO_ENUMERATOR_H_
|
|
#define SHELL_BROWSER_API_GPU_INFO_ENUMERATOR_H_
|
|
|
|
#include <memory>
|
|
#include <stack>
|
|
#include <string>
|
|
|
|
#include "base/values.h"
|
|
#include "gpu/config/gpu_info.h"
|
|
|
|
namespace electron {
|
|
|
|
// This class implements the enumerator for reading all the attributes in
|
|
// GPUInfo into a dictionary.
|
|
class GPUInfoEnumerator final : public gpu::GPUInfo::Enumerator {
|
|
const char* kGPUDeviceKey = "gpuDevice";
|
|
const char* kVideoDecodeAcceleratorSupportedProfileKey =
|
|
"videoDecodeAcceleratorSupportedProfile";
|
|
const char* kVideoEncodeAcceleratorSupportedProfileKey =
|
|
"videoEncodeAcceleratorSupportedProfile";
|
|
const char* kImageDecodeAcceleratorSupportedProfileKey =
|
|
"imageDecodeAcceleratorSupportedProfile";
|
|
const char* kAuxAttributesKey = "auxAttributes";
|
|
const char* kDx12VulkanVersionInfoKey = "dx12VulkanVersionInfo";
|
|
|
|
public:
|
|
GPUInfoEnumerator();
|
|
~GPUInfoEnumerator() override;
|
|
void AddInt64(const char* name, int64_t value) override;
|
|
void AddInt(const char* name, int value) override;
|
|
void AddString(const char* name, const std::string& value) override;
|
|
void AddBool(const char* name, bool value) override;
|
|
void AddTimeDeltaInSecondsF(const char* name,
|
|
const base::TimeDelta& value) override;
|
|
void BeginGPUDevice() override;
|
|
void EndGPUDevice() override;
|
|
void BeginVideoDecodeAcceleratorSupportedProfile() override;
|
|
void EndVideoDecodeAcceleratorSupportedProfile() override;
|
|
void BeginVideoEncodeAcceleratorSupportedProfile() override;
|
|
void EndVideoEncodeAcceleratorSupportedProfile() override;
|
|
void BeginImageDecodeAcceleratorSupportedProfile() override;
|
|
void EndImageDecodeAcceleratorSupportedProfile() override;
|
|
void BeginAuxAttributes() override;
|
|
void EndAuxAttributes() override;
|
|
void BeginDx12VulkanVersionInfo() override;
|
|
void EndDx12VulkanVersionInfo() override;
|
|
std::unique_ptr<base::DictionaryValue> GetDictionary();
|
|
|
|
private:
|
|
// The stack is used to manage nested values
|
|
std::stack<std::unique_ptr<base::DictionaryValue>> value_stack;
|
|
std::unique_ptr<base::DictionaryValue> current;
|
|
};
|
|
|
|
} // namespace electron
|
|
#endif // SHELL_BROWSER_API_GPU_INFO_ENUMERATOR_H_
|