Flutter Engine
The Flutter Engine
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Properties
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
z
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
y
Enumerator
b
c
d
e
f
g
h
k
l
m
n
p
r
s
t
u
v
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
third_party
skia
include
core
SkFontParameters.h
Go to the documentation of this file.
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/SkScalar.h
"
12
#include "
include/core/SkTypes.h
"
13
14
struct
SkFontParameters
{
15
struct
Variation
{
16
// Parameters in a variation font axis.
17
struct
Axis
{
18
constexpr
Axis
() :
tag
(0),
min
(0),
def
(0),
max
(0), flags(0) {}
19
constexpr
Axis
(
SkFourByteTag
tag
,
float
min
,
float
def
,
float
max
,
bool
hidden) :
20
tag
(
tag
),
min
(
min
),
def
(
def
),
max
(
max
), flags(hidden ? HIDDEN : 0) {}
21
22
// Four character identifier of the font axis (weight, width, slant, italic...).
23
SkFourByteTag
tag
;
24
// Minimum value supported by this axis.
25
float
min
;
26
// Default value set by this axis.
27
float
def
;
28
// Maximum value supported by this axis. The maximum can equal the minimum.
29
float
max
;
30
// Return whether this axis is recommended to be remain hidden in user interfaces.
31
bool
isHidden
()
const
{
return
flags & HIDDEN; }
32
// Set this axis to be remain hidden in user interfaces.
33
void
setHidden
(
bool
hidden) { flags = hidden ? (flags | HIDDEN) : (flags & ~HIDDEN); }
34
private
:
35
static
constexpr
uint16_t HIDDEN = 0x0001;
36
// Attributes for a font axis.
37
uint16_t flags;
38
};
39
};
40
};
41
42
#endif
SkScalar.h
SkTypes.h
SkFourByteTag
uint32_t SkFourByteTag
Definition:
SkTypes.h:166
SkFontParameters::Variation::Axis
Definition:
SkFontParameters.h:17
SkFontParameters::Variation::Axis::Axis
constexpr Axis(SkFourByteTag tag, float min, float def, float max, bool hidden)
Definition:
SkFontParameters.h:19
SkFontParameters::Variation::Axis::setHidden
void setHidden(bool hidden)
Definition:
SkFontParameters.h:33
SkFontParameters::Variation::Axis::isHidden
bool isHidden() const
Definition:
SkFontParameters.h:31
SkFontParameters::Variation::Axis::max
float max
Definition:
SkFontParameters.h:29
SkFontParameters::Variation::Axis::def
float def
Definition:
SkFontParameters.h:27
SkFontParameters::Variation::Axis::min
float min
Definition:
SkFontParameters.h:25
SkFontParameters::Variation::Axis::Axis
constexpr Axis()
Definition:
SkFontParameters.h:18
SkFontParameters::Variation::Axis::tag
SkFourByteTag tag
Definition:
SkFontParameters.h:23
SkFontParameters::Variation
Definition:
SkFontParameters.h:15
SkFontParameters
Definition:
SkFontParameters.h:14
Generated on Sun Jun 23 2024 21:56:02 for Flutter Engine by
1.9.4