blob: e5efa7d5380f958f526f1f50b0af861060f0edde [file] [log] [blame]
/*
* 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;
}