aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/animator/SkDrawOval.cpp
blob: e5efa7d5380f958f526f1f50b0af861060f0edde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

/*
 * Copyright 2006 The Android Open Source Project
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */


#include "SkDrawOval.h"
#include "SkAnimateMaker.h"
#include "SkCanvas.h"

#if SK_USE_CONDENSED_INFO == 0

const SkMemberInfo SkOval::fInfo[] = {
    SK_MEMBER_INHERITED,
};

#endif

DEFINE_GET_MEMBER(SkOval);

bool SkOval::draw(SkAnimateMaker& maker) {
    SkBoundableAuto boundable(this, maker);
    maker.fCanvas->drawOval(fRect, *maker.fPaint);
    return false;
}