skia2/gm/crosscontextimage.cpp
Chris Dalton 50e24d7d5f Add a mechanism for GMs to silently exclude themselves from Gold
This is useful, for example, when trying to test a hardware feature
that isn't supported in the current context.

Bug: skia:8731
Change-Id: I9a363159300c92e4039bfd05400238c27002efb1
Reviewed-on: https://skia-review.googlesource.com/c/189133
Commit-Queue: Chris Dalton <csmartdalton@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
2019-02-08 00:05:15 +00:00

55 lines
1.8 KiB
C++

/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "gm.h"
#include "Resources.h"
#include "GrContext.h"
#include "SkImage.h"
DEF_SIMPLE_GPU_GM_CAN_FAIL(cross_context_image, context, rtc, canvas, errorMsg,
5 * 256 + 60, 256 + 128 + 30) {
sk_sp<SkData> encodedData = GetResourceAsData("images/mandrill_256.png");
if (!encodedData) {
*errorMsg = "Could not load mandrill_256.png. Did you forget to set the resourcePath?";
return skiagm::DrawResult::kFail;
}
sk_sp<SkImage> images[5];
images[0] = SkImage::MakeFromEncoded(encodedData);
SkBitmap bmp;
SkPixmap pixmap;
SkAssertResult(images[0]->asLegacyBitmap(&bmp) &&
bmp.peekPixels(&pixmap));
images[1] = SkImage::MakeCrossContextFromEncoded(context, encodedData, false, nullptr);
images[2] = SkImage::MakeCrossContextFromEncoded(context, encodedData, true, nullptr);
images[3] = SkImage::MakeCrossContextFromPixmap(context, pixmap, false, nullptr);
images[4] = SkImage::MakeCrossContextFromPixmap(context, pixmap, true, nullptr);
canvas->translate(10, 10);
for (size_t i = 0; i < SK_ARRAY_COUNT(images); ++i) {
canvas->save();
canvas->drawImage(images[i], 0, 0);
canvas->translate(0, 256 + 10);
canvas->drawImage(images[i]->makeSubset(SkIRect::MakeXYWH(64, 64, 128, 128)), 0, 0);
canvas->translate(128, 0);
SkPaint paint;
paint.setFilterQuality(kMedium_SkFilterQuality);
canvas->drawImageRect(images[i], SkRect::MakeWH(128, 128), &paint);
canvas->restore();
canvas->translate(256 + 10, 0);
}
return skiagm::DrawResult::kOk;
}