1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GPU_CONFIG_GPU_FEATURE_INFO_H_
#define GPU_CONFIG_GPU_FEATURE_INFO_H_
#include <stdint.h>
#include <array>
#include <string>
#include <vector>
#include "build/build_config.h"
#include "gpu/config/gpu_config_export.h"
#include "gpu/config/gpu_feature_type.h"
namespace gfx {
enum class BufferFormat : uint8_t;
}
namespace gl {
class GLContext;
} // namespace gl
namespace gpu {
// Flags indicating the status of a GPU feature (see gpu_feature_type.h).
enum GpuFeatureStatus {
kGpuFeatureStatusEnabled,
kGpuFeatureStatusBlocklisted,
kGpuFeatureStatusDisabled,
kGpuFeatureStatusSoftware,
kGpuFeatureStatusUndefined,
kGpuFeatureStatusMax
};
struct GPU_CONFIG_EXPORT GpuFeatureInfo {
GpuFeatureInfo();
GpuFeatureInfo(const GpuFeatureInfo&);
GpuFeatureInfo(GpuFeatureInfo&&);
~GpuFeatureInfo();
// Set the GL workarounds and disabled GL extensions to the context.
void ApplyToGLContext(gl::GLContext* context) const;
bool IsWorkaroundEnabled(int32_t workaround) const;
// Return true if GpuFeatureInfo is computed.
bool IsInitialized() const;
GpuFeatureInfo& operator=(const GpuFeatureInfo&);
GpuFeatureInfo& operator=(GpuFeatureInfo&&);
// An array of GpuFeatureStatus values, one per GpuFeatureType.
// By default, all features are disabled.
std::array<GpuFeatureStatus, NUMBER_OF_GPU_FEATURE_TYPES> status_values;
// Active gpu driver bug workaround IDs.
// See gpu/config/gpu_driver_bug_workaround_type.h for ID mappings.
std::vector<int32_t> enabled_gpu_driver_bug_workarounds;
// Disabled extensions separated by whitespaces.
std::string disabled_extensions;
// Disabled WebGL extensions separated by whitespaces.
std::string disabled_webgl_extensions;
// Applied gpu blocklist entry indices.
std::vector<uint32_t> applied_gpu_blocklist_entries;
// Applied gpu driver bug list entry indices.
std::vector<uint32_t> applied_gpu_driver_bug_list_entries;
// BufferFormats that can be allocated and then bound, if known and provided
// by the platform.
std::vector<gfx::BufferFormat>
supported_buffer_formats_for_allocation_and_texturing;
#if BUILDFLAG(IS_OZONE)
// BufferFormats of native pixmaps that can be imported in GL context.
std::vector<gfx::BufferFormat>
supported_buffer_formats_for_gl_native_pixmap_import;
#endif // BUILDFLAG(IS_OZONE)
};
} // namespace gpu
#endif // GPU_CONFIG_GPU_FEATURE_INFO_H_
|