Hal Canary | 8751512 | 2019-03-15 14:22:51 -0400 | [diff] [blame] | 1 | // 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 Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 3 | #include "tools/fiddle/examples.h" |
Hal Canary | 8751512 | 2019-03-15 14:22:51 -0400 | [diff] [blame] | 4 | // HASH=45bca8747b8f49b5be34b520897ef048 |
Hal Canary | a7181e7c | 2019-03-18 16:06:34 -0400 | [diff] [blame] | 5 | REG_FIDDLE(Image_MakeCrossContextFromPixmap, 256, 64, false, 4) { |
Hal Canary | 8751512 | 2019-03-15 14:22:51 -0400 | [diff] [blame] | 6 | void draw(SkCanvas* canvas) { |
Adlai Holler | c41ae2a | 2020-08-11 15:47:47 +0000 | [diff] [blame] | 7 | auto dContext = GrAsDirectContext(canvas->recordingContext()); |
| 8 | if (!dContext) { |
| 9 | return; |
| 10 | } |
Robert Phillips | 3b356c5 | 2020-08-13 14:56:33 -0400 | [diff] [blame] | 11 | |
Hal Canary | 8751512 | 2019-03-15 14:22:51 -0400 | [diff] [blame] | 12 | SkPixmap pixmap; |
| 13 | if (source.peekPixels(&pixmap)) { |
Adlai Holler | c41ae2a | 2020-08-11 15:47:47 +0000 | [diff] [blame] | 14 | sk_sp<SkImage> image = SkImage::MakeCrossContextFromPixmap(dContext, pixmap, false); |
Hal Canary | 8751512 | 2019-03-15 14:22:51 -0400 | [diff] [blame] | 15 | canvas->drawImage(image, 0, 0); |
| 16 | } |
| 17 | } |
| 18 | } // END FIDDLE |