// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_GFX_HDR_STATIC_METADATA_H_ #define UI_GFX_HDR_STATIC_METADATA_H_ #include <cstdint> #include <vector> #include "base/numerics/safe_conversions.h" #include "ui/gfx/color_space_export.h" namespace gfx { // This structure is used to define the HDR static capabilities of a display. // Reflects CEA 861.G-2018, Sec.7.5.13, "HDR Static Metadata Data Block" // A value of 0.0 in any of the fields means that it's not indicated. struct COLOR_SPACE_EXPORT HDRStaticMetadata { … }; } // namespace gfx #endif // UI_GFX_HDR_STATIC_METADATA_H_