skia2/gm/crosscontextimage.cpp
Brian Osman 13dddce65f Added SkImage::MakeCrossContextFromEncoded
Designed for Flutter's threading architecture, with
an eye to being useful to other clients. Under the
hood, uses a new image generator class to lazily wrap
a texture for multiple GrContexts.

Re-land of https://skia-review.googlesource.com/c/14180/

Bug: skia:
Change-Id: I3dd382640629b79b3058f18fee68d043566e43e5
Reviewed-on: https://skia-review.googlesource.com/15895
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
2017-05-09 18:45:04 +00:00

40 lines
1.2 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"
#if SK_SUPPORT_GPU
#include "GrContext.h"
#include "SkImage.h"
DEF_SIMPLE_GM(cross_context_image, canvas, 512 + 512 + 30, 512 + 128 + 30) {
GrContext* context = canvas->getGrContext();
if (!context) {
skiagm::GM::DrawGpuOnlyMessage(canvas);
return;
}
sk_sp<SkData> encodedData = GetResourceAsData("mandrill_512.png");
sk_sp<SkImage> encodedImage = SkImage::MakeFromEncoded(encodedData);
canvas->drawImage(encodedImage, 10, 10);
sk_sp<SkImage> crossContextImage = SkImage::MakeCrossContextFromEncoded(
context, encodedData, false, canvas->imageInfo().colorSpace());
canvas->drawImage(crossContextImage, 512 + 30, 10);
SkIRect subset = SkIRect::MakeXYWH(256 - 64, 256 - 64, 128, 128);
sk_sp<SkImage> encodedSubset = encodedImage->makeSubset(subset);
sk_sp<SkImage> crossContextSubset = crossContextImage->makeSubset(subset);
canvas->drawImage(encodedSubset, 10, 512 + 30);
canvas->drawImage(crossContextSubset, 512 + 30, 512 + 30);
}
#endif