Coverage Report

Created: 2024-09-14 07:19

/src/skia/include/core/SkFontParameters.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2018 Google Inc.
3
 *
4
 * Use of this source code is governed by a BSD-style license that can be
5
 * found in the LICENSE file.
6
 */
7
8
#ifndef SkFontParameters_DEFINED
9
#define SkFontParameters_DEFINED
10
11
#include "include/core/SkFourByteTag.h"
12
13
#include <cstdint>
14
15
struct SkFontParameters {
16
    struct Variation {
17
        // Parameters in a variation font axis.
18
        struct Axis {
19
0
            constexpr Axis() : tag(0), min(0), def(0), max(0), flags(0) {}
20
            constexpr Axis(SkFourByteTag tag, float min, float def, float max, bool hidden) :
21
0
                tag(tag), min(min), def(def), max(max), flags(hidden ? HIDDEN : 0) {}
22
23
            // Four character identifier of the font axis (weight, width, slant, italic...).
24
            SkFourByteTag tag;
25
            // Minimum value supported by this axis.
26
            float min;
27
            // Default value set by this axis.
28
            float def;
29
            // Maximum value supported by this axis. The maximum can equal the minimum.
30
            float max;
31
            // Return whether this axis is recommended to be remain hidden in user interfaces.
32
0
            bool isHidden() const { return flags & HIDDEN; }
33
            // Set this axis to be remain hidden in user interfaces.
34
0
            void setHidden(bool hidden) { flags = hidden ? (flags | HIDDEN) : (flags & ~HIDDEN); }
35
        private:
36
            static constexpr uint16_t HIDDEN = 0x0001;
37
            // Attributes for a font axis.
38
            uint16_t flags;
39
        };
40
    };
41
};
42
43
#endif