michael@0: michael@0: /* michael@0: * Copyright 2006 The Android Open Source Project michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: michael@0: #ifndef SkDrawClip_DEFINED michael@0: #define SkDrawClip_DEFINED michael@0: michael@0: #include "SkDrawable.h" michael@0: #include "SkMemberInfo.h" michael@0: #include "SkRegion.h" michael@0: michael@0: class SkDrawPath; michael@0: class SkDrawRect; michael@0: michael@0: class SkDrawClip : public SkDrawable { michael@0: DECLARE_DRAW_MEMBER_INFO(Clip); michael@0: SkDrawClip(); michael@0: virtual bool draw(SkAnimateMaker& ); michael@0: private: michael@0: SkDrawRect* rect; michael@0: SkDrawPath* path; michael@0: }; michael@0: michael@0: #endif // SkDrawClip_DEFINED