mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL is a first step towards custom paint. It introduces a class that can draw a circle into an SkPicture. Future CLs will wire the SkPicture into the render tree and expose this object to script. R=ojan@chromium.org Review URL: https://codereview.chromium.org/1017373003
19 lines
323 B
C++
19 lines
323 B
C++
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "sky/engine/config.h"
|
|
#include "sky/engine/core/painting/Paint.h"
|
|
|
|
namespace blink {
|
|
|
|
Paint::Paint()
|
|
{
|
|
}
|
|
|
|
Paint::~Paint()
|
|
{
|
|
}
|
|
|
|
} // namespace blink
|