aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/RecordTest.cpp
blob: 2fcc1e9c53cc6a6020fa4aab979e6bb6ec91a015 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * Copyright 2014 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "Test.h"

#include "SkBitmap.h"
#include "SkImageInfo.h"
#include "SkShader.h"
#include "SkRecord.h"
#include "SkRecordAnalysis.h"
#include "SkRecords.h"

// Sums the area of any DrawRect command it sees.
class AreaSummer {
public:
    AreaSummer() : fArea(0) {}

    template <typename T> void operator()(const T&) { }

    void operator()(const SkRecords::DrawRect& draw) {
        fArea += (int)(draw.rect.width() * draw.rect.height());
    }

    int area() const { return fArea; }

    void apply(const SkRecord& record) {
        for (unsigned i = 0; i < record.count(); i++) {
            record.visit<void>(i, *this);
        }
    }

private:
    int fArea;
};

// Scales out the bottom-right corner of any DrawRect command it sees by 2x.
struct Stretch {
    template <typename T> void operator()(T*) {}
    void operator()(SkRecords::DrawRect* draw) {
        draw->rect.fRight *= 2;
        draw->rect.fBottom *= 2;
    }

    void apply(SkRecord* record) {
        for (unsigned i = 0; i < record->count(); i++) {
            record->mutate<void>(i, *this);
        }
    }
};

#define APPEND(record, type, ...) SkNEW_PLACEMENT_ARGS(record.append<type>(), type, (__VA_ARGS__))

// Basic tests for the low-level SkRecord code.
DEF_TEST(Record, r) {
    SkRecord record;

    // Add a simple DrawRect command.
    SkRect rect = SkRect::MakeWH(10, 10);
    SkPaint paint;
    APPEND(record, SkRecords::DrawRect, paint, rect);

    // Its area should be 100.
    AreaSummer summer;
    summer.apply(record);
    REPORTER_ASSERT(r, summer.area() == 100);

    // Scale 2x.
    Stretch stretch;
    stretch.apply(&record);

    // Now its area should be 100 + 400.
    summer.apply(record);
    REPORTER_ASSERT(r, summer.area() == 500);
}

DEF_TEST(RecordAnalysis, r) {
    SkRecord record;

    SkRect rect = SkRect::MakeWH(10, 10);
    SkPaint paint;
    APPEND(record, SkRecords::DrawRect, paint, rect);
    REPORTER_ASSERT(r, !SkRecordWillPlaybackBitmaps(record));

    SkBitmap bitmap;
    APPEND(record, SkRecords::DrawBitmap, &paint, bitmap, 0.0f, 0.0f);
    REPORTER_ASSERT(r, SkRecordWillPlaybackBitmaps(record));

    SkNEW_PLACEMENT_ARGS(record.replace<SkRecords::DrawRect>(1),
                         SkRecords::DrawRect, (paint, rect));
    REPORTER_ASSERT(r, !SkRecordWillPlaybackBitmaps(record));

    SkPaint paint2;
    // CreateBitmapShader is too smart for us; an empty (or 1x1) bitmap shader
    // gets optimized into a non-bitmap form, so we create a 2x2 bitmap here.
    SkBitmap bitmap2;
    bitmap2.allocPixels(SkImageInfo::MakeN32Premul(2, 2));
    bitmap2.eraseColor(SK_ColorBLUE);
    *(bitmap2.getAddr32(0, 0)) = SK_ColorGREEN;
    SkShader* shader = SkShader::CreateBitmapShader(bitmap2, SkShader::kClamp_TileMode,
                                                    SkShader::kClamp_TileMode);
    paint2.setShader(shader)->unref();
    REPORTER_ASSERT(r, shader->asABitmap(NULL, NULL, NULL) == SkShader::kDefault_BitmapType);

    APPEND(record, SkRecords::DrawRect, paint2, rect);
    REPORTER_ASSERT(r, SkRecordWillPlaybackBitmaps(record));
}

#undef APPEND