OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SkShaper
(Results
1 - 4
of
4
) sorted by null
/external/skia/modules/skshaper/src/
SkShaper.cpp
8
#include "
SkShaper
.h"
12
std::unique_ptr<
SkShaper
>
SkShaper
::Make() {
14
std::unique_ptr<
SkShaper
> shaper =
SkShaper
::MakeHarfBuzz();
19
return
SkShaper
::MakePrimitive();
22
SkShaper
::
SkShaper
() {}
23
SkShaper
::~
SkShaper
() {}
[
all
...]
/external/skqp/modules/skshaper/src/
SkShaper_primitive.cpp
8
#include "
SkShaper
.h"
14
struct
SkShaper
::Impl {
18
SkShaper
::
SkShaper
(sk_sp<SkTypeface> tf) : fImpl(new Impl) {
22
SkShaper
::~
SkShaper
() {}
24
bool
SkShaper
::good() const { return true; }
34
SkPoint
SkShaper
::shape(RunHandler* handler,
/external/skia/modules/skshaper/include/
SkShaper.h
26
class
SkShaper
{
28
static std::unique_ptr<
SkShaper
> MakePrimitive();
30
static std::unique_ptr<
SkShaper
> MakeHarfBuzz();
33
static std::unique_ptr<
SkShaper
> Make();
35
SkShaper
();
36
virtual ~
SkShaper
();
74
SkShaper
(const
SkShaper
&) = delete;
75
SkShaper
& operator=(const
SkShaper
&) = delete
[
all
...]
/external/skqp/modules/skshaper/include/
SkShaper.h
25
class
SkShaper
{
27
SkShaper
(sk_sp<SkTypeface> face);
28
~
SkShaper
();
63
SkShaper
(const
SkShaper
&) = delete;
64
SkShaper
& operator=(const
SkShaper
&) = delete;
73
class SkTextBlobBuilderRunHandler final : public
SkShaper
::RunHandler {
77
SkShaper
::RunHandler::Buffer newRunBuffer(const RunInfo&, const SkFont&, int, int) override;
Completed in 106 milliseconds