gfx/skia/trunk/src/animator/SkDrawTo.cpp

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     2 /*
     3  * Copyright 2006 The Android Open Source Project
     4  *
     5  * Use of this source code is governed by a BSD-style license that can be
     6  * found in the LICENSE file.
     7  */
    10 #include "SkDrawTo.h"
    11 #include "SkAnimateMaker.h"
    12 #include "SkCanvas.h"
    13 #include "SkDrawBitmap.h"
    15 #if SK_USE_CONDENSED_INFO == 0
    17 const SkMemberInfo SkDrawTo::fInfo[] = {
    18     SK_MEMBER(drawOnce, Boolean),
    19     SK_MEMBER(use, Bitmap)
    20 };
    22 #endif
    24 DEFINE_GET_MEMBER(SkDrawTo);
    26 SkDrawTo::SkDrawTo() : drawOnce(false), use(NULL), fDrawnOnce(false) {
    27 }
    29 #if 0
    30 SkDrawTo::~SkDrawTo() {
    31     SkASSERT(0);
    32 }
    33 #endif
    35 bool SkDrawTo::draw(SkAnimateMaker& maker) {
    36     if (fDrawnOnce)
    37         return false;
    38     SkCanvas canvas(use->fBitmap);
    39     SkCanvas* save = maker.fCanvas;
    40     maker.fCanvas = &canvas;
    41     INHERITED::draw(maker);
    42     maker.fCanvas = save;
    43     fDrawnOnce = drawOnce;
    44     return false;
    45 }
    47 #ifdef SK_DUMP_ENABLED
    48 void SkDrawTo::dump(SkAnimateMaker* maker) {
    49     dumpBase(maker);
    50     dumpAttrs(maker);
    51     if (use)
    52         SkDebugf("use=\"%s\" ", use->id);
    53     dumpDrawables(maker);
    54 }
    55 #endif

mercurial