a9baa652bb
Reason for revert: Fails on mac for some reason. Also is a bit wrong, but this should not be reason for the failure.. Original issue's description: > Add image as a draw type that can be filtered > > Add image as a draw type that can be filtered. > > This is needed when SkImage is added as an object to be drawn so that > the draw is forwarded to SkBaseDevice. This would be used in making > filters use SkImages. > > BUG=skia:3388 > > Committed: https://skia.googlesource.com/skia/+/fa77eb1e51b9317ff993d1be504ada173b561e5f TBR=reed@google.com,bsalomon@google.com NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia:3388 Review URL: https://codereview.chromium.org/980273002
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "SkBitmapDevice.h"
|
|
#include "SkImagePriv.h"
|
|
#include "Test.h"
|
|
|
|
static const int gWidth = 20;
|
|
static const int gHeight = 20;
|
|
|
|
// Tests that SkNewImageFromBitmap obeys pixelref origin.
|
|
DEF_TEST(SkImageFromBitmap_extractSubset, reporter) {
|
|
SkAutoTUnref<SkImage> image;
|
|
{
|
|
SkBitmap srcBitmap;
|
|
srcBitmap.allocN32Pixels(gWidth, gHeight);
|
|
srcBitmap.eraseColor(SK_ColorRED);
|
|
SkBitmapDevice dev(srcBitmap);
|
|
SkCanvas canvas(&dev);
|
|
SkIRect r = SkIRect::MakeXYWH(5, 5, gWidth - 5, gWidth - 5);
|
|
SkPaint p;
|
|
p.setColor(SK_ColorGREEN);
|
|
canvas.drawIRect(r, p);
|
|
SkBitmap dstBitmap;
|
|
srcBitmap.extractSubset(&dstBitmap, r);
|
|
image.reset(SkNewImageFromBitmap(dstBitmap, true, NULL));
|
|
}
|
|
|
|
SkBitmap tgt;
|
|
tgt.allocN32Pixels(gWidth, gHeight);
|
|
SkBitmapDevice dev(tgt);
|
|
SkCanvas canvas(&dev);
|
|
canvas.clear(SK_ColorTRANSPARENT);
|
|
canvas.drawImage(image, 0, 0, NULL);
|
|
|
|
uint32_t pixel = 0;
|
|
SkImageInfo info = SkImageInfo::MakeN32Premul(1, 1);
|
|
canvas.readPixels(info, &pixel, 4, 0, 0);
|
|
REPORTER_ASSERT(reporter, pixel == SK_ColorGREEN);
|
|
canvas.readPixels(info, &pixel, 4, gWidth - 6, gWidth - 6);
|
|
REPORTER_ASSERT(reporter, pixel == SK_ColorGREEN);
|
|
|
|
canvas.readPixels(info, &pixel, 4, gWidth - 5, gWidth - 5);
|
|
REPORTER_ASSERT(reporter, pixel == SK_ColorTRANSPARENT);
|
|
}
|