aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/FlingState.h
blob: 09557b90fb754fd143f0f6ab585faf162fb4b545 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

/*
 * Copyright 2010 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */



#ifndef SkFlingState_DEFINED
#define SkFlingState_DEFINED

#include "SkScalar.h"
#include "SkPoint.h"

class SkMatrix;

struct FlingState {
    FlingState() : fActive(false) {}

    bool isActive() const { return fActive; }
    void stop() { fActive = false; }

    void reset(float sx, float sy);
    bool evaluateMatrix(SkMatrix* matrix);

private:
    SkPoint     fDirection;
    SkScalar    fSpeed0;
    double      fTime0;
    bool        fActive;
};

class GrAnimateFloat {
public:
    GrAnimateFloat();

    void start(float v0, float v1, float duration);
    bool isActive() const { return fTime0 != 0; }
    void stop() { fTime0 = 0; }

    float evaluate();

private:
    float   fValue0, fValue1, fDuration;
    SkMSec  fTime0;
};

#endif