aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/smallimage.cpp
blob: 6eb48d830d230612b6a3e2ccaefd63acdc3866ae (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "Resources.h"
#include "gm.h"

DEF_SIMPLE_GM(small_image, canvas, 8, 8) {
    SkBitmap bitmap;
    if (GetResourceAsBitmap("randPixels.png", &bitmap)) {
        canvas->drawBitmap(bitmap, 0.0f, 0.0f);
    } else {
        SkDebugf("\nCould not decode resource.\n");
    }
}