blob: 34f5583622462184ba4d655ebeb9a8ccd212e88e [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=94e9296c53bad074bf2a48ff885dac13
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Image_MakeFromTexture, 256, 128, false, 3) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
Adlai Holler14dc7912020-08-11 15:48:49 +00007 auto dContext = GrAsDirectContext(canvas->recordingContext());
8 if (!dContext) {
Hal Canary87515122019-03-15 14:22:51 -04009 return;
10 }
11 canvas->scale(.25f, .25f);
12 int x = 0;
13 for (auto origin : { kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin } ) {
Adlai Holler14dc7912020-08-11 15:48:49 +000014 sk_sp<SkImage> image = SkImage::MakeFromTexture(dContext, backEndTexture,
Hal Canary87515122019-03-15 14:22:51 -040015 origin, kRGBA_8888_SkColorType, kOpaque_SkAlphaType, nullptr);
16 canvas->drawImage(image, x, 0);
17 x += 512;
18 }
19}
20} // END FIDDLE